Skip to content

Commit

Permalink
fixed mistake in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MilchRatchet committed Jan 12, 2020
1 parent c310da5 commit 21e931b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SubBox/wwwroot/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,7 @@ var app = new Vue({

this.newestVersion = latest.tag_name;

this.newestVersion = this.newestVersion.substring(2, this.newestVersion.length);
this.newestVersion = this.newestVersion.substring(1, this.newestVersion.length);

if (this.newestVersion !== this.informationContent[0]) {
const messageId = this.messageRunningId++;
Expand Down

0 comments on commit 21e931b

Please sign in to comment.