Remove special handling for dev versions

This commit is contained in:
confused-Techie 2023-09-03 19:46:45 -07:00
parent 88fdb77d22
commit 0d3c32305e

View File

@ -9,11 +9,6 @@ let UpdateManager = class UpdateManager {
}
getReleaseNotesURLForVersion(appVersion) {
// Dev versions will not have a releases page
if (appVersion.indexOf('dev') > -1) {
return 'https://pulsar-edit.dev/download.html';
}
if (appVersion.startsWith('v')) {
appVersion = appVersion.replace("v", "");
}