Skip to content

Commit a99e841

Browse files
authored
Merge pull request #126 from watson-developer-cloud/gh-125-androidBug
Gh 125 android bug
2 parents b122a4d + ffdfd31 commit a99e841

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Scripts/Utilities/DataCache.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,11 @@ public byte[] Find(string id)
113113
CacheItem item = null;
114114
if (m_Cache.TryGetValue(id, out item))
115115
{
116+
#if !UNITY_ANDROID
116117
item.Time = DateTime.Now;
117118

118119
File.SetLastWriteTime(item.Path, item.Time);
120+
#endif
119121

120122
if (item.Data == null)
121123
{

0 commit comments

Comments
 (0)