Strip " from dev plugin location on adding

This commit is contained in:
Stanley Dimant 2022-09-04 14:23:26 +02:00
parent 0599b4628b
commit 35078e7fab

View file

@ -836,7 +836,7 @@ namespace Dalamud.Interface.Internal.Windows
{ {
this.devPluginLocations.Add(new DevPluginLocationSettings this.devPluginLocations.Add(new DevPluginLocationSettings
{ {
Path = this.devPluginTempLocation, Path = this.devPluginTempLocation.Replace("\"", string.Empty),
IsEnabled = true, IsEnabled = true,
}); });
this.devPluginLocationsChanged = true; this.devPluginLocationsChanged = true;