Skip to content
Snippets Groups Projects
Commit aae7259a authored by Callum Prentice's avatar Callum Prentice
Browse files

Fix for meta issue: SL-14210 Prune descriptive tag from new cache filenames

parent 391ada11
No related branches found
No related tags found
No related merge requests found
...@@ -187,8 +187,12 @@ const std::string LLDiskCache::metaDataToFilepath(const std::string id, ...@@ -187,8 +187,12 @@ const std::string LLDiskCache::metaDataToFilepath(const std::string id,
file_path << id; file_path << id;
file_path << "_"; file_path << "_";
file_path << (extra_info.empty() ? "0" : extra_info); file_path << (extra_info.empty() ? "0" : extra_info);
file_path << "_"; //file_path << "_";
file_path << assetTypeToString(at); //file_path << assetTypeToString(at); // see SL-14210 Prune descriptive tag from new cache filenames
// for details of why it was removed. Note that if you put it
// back or change the format of the filename, the cache files
// files will be invalidated (and perhaps, more importantly,
// never deleted unless you delete them manually).
file_path << ".asset"; file_path << ".asset";
return file_path.str(); return file_path.str();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment