Skip to content

Commit

Permalink
Nikola auto commit.
Browse files Browse the repository at this point in the history
Source commit: 7aa54a1
Nikola version: 8.2.4
  • Loading branch information
jfx2006 committed Nov 13, 2023
1 parent f4071bd commit 293f6ae
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions assets/js/bugzilla.js
Original file line number Diff line number Diff line change
Expand Up @@ -349,10 +349,8 @@ export default class BZQueryRunner {
current_version = await this.getCurrentVersion()
const nightly_major = await this.getNightlyMajor()
if (current_version !== undefined && nightly_major !== undefined) {
if (this.channel_name === "release115") {
bugzilla_version = "esr115"
} else if (this.channel_name === "release102") {
bugzilla_version = `esr102`
if (this.channel_name.startsWith("esr")) {
bugzilla_version = this.channel_name
} else if (this.channel_name === "beta") {
bugzilla_version = current_version.major_version.toString()
}
Expand Down

0 comments on commit 293f6ae

Please sign in to comment.