We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 86023ed + 2f6c35e commit af74cdbCopy full SHA for af74cdb
Files/ViewModels/Properties/FileProperty.cs
@@ -296,9 +296,10 @@ public async static Task<List<FileProperty>> RetrieveAndInitializePropertiesAsyn
296
keyValuePairs.Add(prop, val);
297
}
298
#else
299
+ IDictionary<string, object> keyValuePairs = new Dictionary<string, object>();
300
if (file.Properties != null)
301
{
- var keyValuePairs = await file.Properties.RetrievePropertiesAsync(propsToGet);
302
+ keyValuePairs = await file.Properties.RetrievePropertiesAsync(propsToGet);
303
304
#endif
305
foreach (var prop in list)
0 commit comments