mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
Merge pull request #263 from Aireil/fix_plugin_update_name
Use internal name when updating plugins
This commit is contained in:
commit
ad7cc426bd
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ namespace Dalamud.Plugin
|
|||
var info = JsonConvert.DeserializeObject<PluginDefinition>(
|
||||
File.ReadAllText(localInfoFile.FullName));
|
||||
|
||||
var remoteInfo = this.PluginMaster.FirstOrDefault(x => x.Name == info.Name);
|
||||
var remoteInfo = this.PluginMaster.FirstOrDefault(x => x.InternalName == info.InternalName);
|
||||
|
||||
if (remoteInfo == null) {
|
||||
Log.Information("Is not in pluginmaster: {0}", info.Name);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue