File tree 1 file changed +2
-2
lines changed
OverlayPlugin.Core/Integration
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ private IDataRepository GetRepository()
70
70
if ( repository != null )
71
71
return repository ;
72
72
73
- var FFXIV = ActGlobals . oFormActMain . ActPlugins . FirstOrDefault ( x => x . lblPluginTitle . Text == "FFXIV_ACT_Plugin.dll" ) ;
73
+ var FFXIV = ActGlobals . oFormActMain . ActPlugins . FirstOrDefault ( x => x . lblPluginTitle . Text . StartsWith ( "FFXIV_ACT_Plugin" ) ) ;
74
74
if ( FFXIV != null && FFXIV . pluginObj != null )
75
75
{
76
76
try
@@ -91,7 +91,7 @@ private IDataSubscription GetSubscription()
91
91
if ( subscription != null )
92
92
return subscription ;
93
93
94
- var FFXIV = ActGlobals . oFormActMain . ActPlugins . FirstOrDefault ( x => x . lblPluginTitle . Text == "FFXIV_ACT_Plugin.dll" ) ;
94
+ var FFXIV = ActGlobals . oFormActMain . ActPlugins . FirstOrDefault ( x => x . lblPluginTitle . Text . StartsWith ( "FFXIV_ACT_Plugin" ) ) ;
95
95
if ( FFXIV != null && FFXIV . pluginObj != null )
96
96
{
97
97
try
You can’t perform that action at this time.
0 commit comments