Removed incorrect 'that' statement

This commit is contained in:
samcm 2017-12-24 01:50:19 +11:00
parent acf51479ac
commit 9ac6c06669
2 changed files with 3 additions and 3 deletions

View File

@ -46,8 +46,8 @@
<v-snackbar
bottom
:timeout="4000"
v-model="snackbar"
> <div style="text-align:center; width:100%">{{ snackbarMsg }}</div>
v-model="snackbar">
<div style="text-align:center; width:100%">{{ snackbarMsg }}</div>
</v-snackbar>
</v-container>
</v-content>

View File

@ -382,7 +382,7 @@ module.exports = function PlexClient () {
}
// Now that we've built our params, it's time to hit the client api
await this.hitApi(command, params, that.chosenConnection)
await this.hitApi(command, params, this.chosenConnection)
return true
}