chore: save persisted sigs on async plugin load

This commit is contained in:
goaaats 2022-06-20 23:17:58 +02:00
parent 72b18dd2b5
commit 7e44a8461f
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -12,6 +12,7 @@ using System.Threading.Tasks;
using CheapLoc;
using Dalamud.Configuration;
using Dalamud.Configuration.Internal;
using Dalamud.Game;
using Dalamud.Game.Gui;
using Dalamud.Game.Gui.Dtr;
using Dalamud.Game.Text;
@ -340,6 +341,9 @@ internal partial class PluginManager : IDisposable
{
this.PluginsReady = true;
this.NotifyInstalledPluginsChanged();
// Save signatures, makes sense to do it here since all plugins will be loaded
Service<SigScanner>.Get().Save();
});
}