mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix null references issues in commit 6b9f96697b @aaroncampf
This commit is contained in:
parent
a254b996e0
commit
7d4dd9c699
1 changed files with 5 additions and 0 deletions
|
|
@ -19,6 +19,11 @@ namespace Wox.Plugin.SystemPlugins.Folder_Links {
|
|||
|
||||
protected override void InitInternal(PluginInitContext context) {
|
||||
this.context = context;
|
||||
if (UserSettingStorage.Instance.FolderLinks == null)
|
||||
{
|
||||
UserSettingStorage.Instance.FolderLinks = new List<FolderLink>();
|
||||
UserSettingStorage.Instance.Save();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Windows.Controls.Control CreateSettingPanel() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue