idk some fixes I guess
This commit is contained in:
@@ -336,7 +336,7 @@ public sealed class FileCacheManager : IDisposable
|
||||
|
||||
private void AddHashedFile(FileCacheEntity fileCache)
|
||||
{
|
||||
if (!_fileCaches.TryGetValue(fileCache.Hash, out var entries))
|
||||
if (!_fileCaches.TryGetValue(fileCache.Hash, out var entries) || entries is null)
|
||||
{
|
||||
_fileCaches[fileCache.Hash] = entries = [];
|
||||
}
|
||||
|
||||
@@ -406,7 +406,7 @@ public class TopTabMenu
|
||||
perm.SetDisableSounds(true);
|
||||
return perm;
|
||||
});
|
||||
PopupSyncshellSetting("Syncshell Animations", "Enable sounds for all syncshells", "Disable sounds for all syncshells",
|
||||
PopupSyncshellSetting("Syncshell Animations", "Enable animations for all syncshells", "Disable animations for all syncshells",
|
||||
FontAwesomeIcon.Running, FontAwesomeIcon.Stop,
|
||||
(perm) =>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user