Skip to content

Commit

Permalink
Tweak Github Update Notifier Key Check
Browse files Browse the repository at this point in the history
  • Loading branch information
leoherzog committed Mar 29, 2022
1 parent 926af71 commit 0224fa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code.gs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function checkGithubReleaseVersion_() {
console.warn('Problem attempting to check for newer Github version');
return;
}
switch (compareSemver_(version, latestRelease.name)) {
switch (compareSemver_(version, latestRelease.tag_name)) {
case 0:
// console.info('Script is up-to-date');
break;
Expand Down

0 comments on commit 0224fa9

Please sign in to comment.