mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix wrong deminification
This commit is contained in:
parent
cefe6fe7c6
commit
793d74e82f
1 changed files with 6 additions and 8 deletions
|
@ -114,14 +114,12 @@ define(['jQuery', 'loading', 'libraryMenu', 'globalize', 'connectionManager', 'e
|
||||||
})[0];
|
})[0];
|
||||||
|
|
||||||
var version = $('#selectVersion', page).val();
|
var version = $('#selectVersion', page).val();
|
||||||
if (installedPlugin) {
|
if (installedPlugin && installedPlugin.Version === version) {
|
||||||
if (installedPlugin.Version === version) {
|
loading.hide();
|
||||||
loading.hide();
|
Dashboard.alert({
|
||||||
Dashboard.alert({
|
message: globalize.translate('MessageAlreadyInstalled'),
|
||||||
message: globalize.translate('MessageAlreadyInstalled'),
|
title: globalize.translate('HeaderPluginInstallation')
|
||||||
title: globalize.translate('HeaderPluginInstallation')
|
});
|
||||||
});
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
performInstallation(page, name, guid, version);
|
performInstallation(page, name, guid, version);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue