Use correct URL for beta builds for Windows 32-bit-on-64-bit warning

For #4172
This commit is contained in:
Dan Stillman 2024-05-29 06:54:42 -04:00
parent 14a0a8ab24
commit 4a9ce6b82b

View file

@ -6047,7 +6047,10 @@ var ZoteroPane = new function()
panel.removeAttribute('collapsed');
action.onclick = function () {
Zotero.launchURL('https://www.zotero.org/download/');
let url = Zotero.isBetaBuild
? 'https://www.zotero.org/support/beta_builds'
: 'https://www.zotero.org/download/';
Zotero.launchURL(url);
};
close.onclick = function () {
this.hideArchitectureWarning();