Disabled caching on the ConfigService.

This commit is contained in:
MapleWheels
2026-04-08 16:27:01 -04:00
parent ebe8ec455f
commit bdd4dcfb9e

View File

@@ -162,7 +162,7 @@ public sealed partial class ConfigService : IConfigService
_commandsService = commandsService; _commandsService = commandsService;
_infoProvider = infoProvider; _infoProvider = infoProvider;
_storageService.UseCaching = true; _storageService.UseCaching = false;
InjectCommands(commandsService); InjectCommands(commandsService);
} }