Fix WinWord plugin installation not running on startup (#4579)

This commit is contained in:
Adomas Venčkauskas 2024-08-16 16:51:35 +03:00 committed by Dan Stillman
parent aef0e51186
commit 365d6f4295

View file

@ -95,7 +95,7 @@ Zotero.Integration = new function() {
if (Zotero.isMac) { if (Zotero.isMac) {
entryPoints.push(PLUGIN_PATHS.MacWord); entryPoints.push(PLUGIN_PATHS.MacWord);
} }
else if (Zotero.isWindows) { else if (Zotero.isWin) {
entryPoints.push(PLUGIN_PATHS.WinWord); entryPoints.push(PLUGIN_PATHS.WinWord);
} }
for (let entryPoint of entryPoints) { for (let entryPoint of entryPoints) {