Skip to content

Commit d0a0d8d

Browse files
authored
Merge pull request #11 from Haselnussbomber/fix-thirdparty
Fix third party plugin detection
2 parents 6d0af6c + 0f608ae commit d0a0d8d

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/viewer/DalamudLogViewer.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ export function DalamudLogViewer(props: DalamudLogViewerProps) {
7878
null,
7979
"",
8080
"https://kamori.goats.dev/Plugin/PluginMaster",
81-
"https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/pluginmaster.json",
8281
"OFFICIAL"
8382
];
8483

@@ -88,9 +87,7 @@ export function DalamudLogViewer(props: DalamudLogViewerProps) {
8887
name: plugin.Name,
8988
internalName: plugin.InternalName,
9089
version: plugin.AssemblyVersion,
91-
thirdParty:
92-
!pluginSources.includes(plugin.InstalledFromUrl) ||
93-
plugin.DownloadLinkInstall === null,
90+
thirdParty: !pluginSources.includes(plugin.InstalledFromUrl),
9491
repoUrl: plugin.RepoUrl,
9592
loadState:
9693
troubleshooting.PluginStates[plugin.InternalName] ?? PluginState.Unknown

0 commit comments

Comments
 (0)