@@ -23,8 +23,12 @@ export default {
token: ''
}
},
- fetch() {
- this.token = this.$route.query.token;
+ async fetch() {
+ if (this.$userAgent.isAndroid) {
+ this.token = await window.native.getToken();
+ } else {
+ this.token = this.$route.query.token;
+ }
computed: {
videoURL() {