mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-13 19:44:15 +01:00
idk some fixes I guess
This commit is contained in:
parent
a51ce22d28
commit
505d50a547
2 changed files with 2 additions and 2 deletions
|
|
@ -336,7 +336,7 @@ public sealed class FileCacheManager : IDisposable
|
||||||
|
|
||||||
private void AddHashedFile(FileCacheEntity fileCache)
|
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 = [];
|
_fileCaches[fileCache.Hash] = entries = [];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -406,7 +406,7 @@ public class TopTabMenu
|
||||||
perm.SetDisableSounds(true);
|
perm.SetDisableSounds(true);
|
||||||
return perm;
|
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,
|
FontAwesomeIcon.Running, FontAwesomeIcon.Stop,
|
||||||
(perm) =>
|
(perm) =>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue