From 73852c97bf739dce74ea8a0660d2b94f3ec47ab3 Mon Sep 17 00:00:00 2001
From: Jack251970 <1160210343@qq.com>
Date: Wed, 26 Mar 2025 11:52:52 +0800
Subject: [PATCH] Remove JsonIgnore to make sure paths are sent to JsonRPC
plugins
---
Flow.Launcher.Plugin/PluginMetadata.cs | 2 --
1 file changed, 2 deletions(-)
diff --git a/Flow.Launcher.Plugin/PluginMetadata.cs b/Flow.Launcher.Plugin/PluginMetadata.cs
index 42c90bda4..eb276509b 100644
--- a/Flow.Launcher.Plugin/PluginMetadata.cs
+++ b/Flow.Launcher.Plugin/PluginMetadata.cs
@@ -133,7 +133,6 @@ namespace Flow.Launcher.Plugin
/// When plugin is deleted, FL will ask users whether to keep its settings.
/// If users do not want to keep, this directory will be deleted.
///
- [JsonIgnore]
public string PluginSettingsDirectoryPath { get; internal set; }
///
@@ -141,7 +140,6 @@ namespace Flow.Launcher.Plugin
/// It is used to store cache files.
/// When plugin is deleted, this directory will be deleted as well.
///
- [JsonIgnore]
public string PluginCacheDirectoryPath { get; internal set; }
///