We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d0af6c + 0f608ae commit d0a0d8dCopy full SHA for d0a0d8d
1 file changed
src/viewer/DalamudLogViewer.tsx
@@ -78,7 +78,6 @@ export function DalamudLogViewer(props: DalamudLogViewerProps) {
78
null,
79
"",
80
"https://kamori.goats.dev/Plugin/PluginMaster",
81
- "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api6/pluginmaster.json",
82
"OFFICIAL"
83
];
84
@@ -88,9 +87,7 @@ export function DalamudLogViewer(props: DalamudLogViewerProps) {
88
87
name: plugin.Name,
89
internalName: plugin.InternalName,
90
version: plugin.AssemblyVersion,
91
- thirdParty:
92
- !pluginSources.includes(plugin.InstalledFromUrl) ||
93
- plugin.DownloadLinkInstall === null,
+ thirdParty: !pluginSources.includes(plugin.InstalledFromUrl),
94
repoUrl: plugin.RepoUrl,
95
loadState:
96
troubleshooting.PluginStates[plugin.InternalName] ?? PluginState.Unknown
0 commit comments