mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Use internal name when updating plugins
This commit is contained in:
parent
32a72e41f9
commit
dbbde09469
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