mirror of
https://github.com/unraid/api.git
synced 2026-01-03 15:09:48 -06:00
fix: invalid api key error only w/ plg
This commit is contained in:
@@ -538,7 +538,7 @@ export const useServerStore = defineStore('server', () => {
|
||||
|
||||
const invalidApiKey = computed((): Error | undefined => {
|
||||
// must be registered with plugin installed
|
||||
if (!registered.value) {
|
||||
if (!connectPluginInstalled.value || !registered.value) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user