feat: Update page now shows releases

This commit is contained in:
Kenny 2022-06-22 12:20:28 -04:00
parent cff501cd5e
commit 4786f863d7
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ export default {
async mounted() {
const releases = await this.$vuetube.releases;
const appVersion = process.env.appVersion;
if (appVersion !== releases[0].sha && appVersion !== "dev-local") {
if (appVersion !== releases[0].tag_name && appVersion !== "dev-local") {
this.updateSnackbar = true;
}
},