Merge pull request #244 from jellyfin/dkanada-patch-1

Fix a deminification issue with the plugin page
This commit is contained in:
Joshua M. Boniface 2019-04-13 16:44:03 -04:00 committed by GitHub
commit c8ca46fdbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,10 +133,10 @@ define(["jQuery", "loading", "libraryMenu", "globalize", "connectionManager", "e
message: globalize.translate("MessageAlreadyInstalled"), message: globalize.translate("MessageAlreadyInstalled"),
title: globalize.translate("HeaderPluginInstallation") title: globalize.translate("HeaderPluginInstallation")
}); });
}
} else { } else {
performInstallation(page, name, guid, vals[1], version); performInstallation(page, name, guid, vals[1], version);
} }
}
}); });
return false; return false;
}); });