Skip to content

Commit

Permalink
v1.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Xmader committed Sep 28, 2018
1 parent 4a510ce commit 56c56de
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Greasy Fork地址: [https://greasyfork.org/scripts/372516](https://greasyfork.or

如果有bug,请直接使用[Github Issues](https://github.com/Xmader/bilitwin/issues)向我反馈

## 由于B站限制,右键一下播放器才能显示下载按钮

---

# 国产浏览器请点[这里](https://github.com/Xmader/bilitwin/raw/master/biliTwinBabelCompiled.user.js)
Expand Down
2 changes: 1 addition & 1 deletion biliTwin.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -8757,7 +8757,7 @@ class BiliTwin extends BiliUserJS {
// 2. monkey and polyfill
this.monkey = new BiliMonkey(this.playerWin, this.option);
this.polyfill = new BiliPolyfill(this.playerWin, this.option, t => UI.hintInfo(t, this.playerWin));
await Promise.all([this.polyfill.setFunctions()]);
await this.polyfill.setFunctions();

// 3. async consistent => render UI
const cidRefresh = BiliTwin.getCidRefreshPromise(this.playerWin);
Expand Down
2 changes: 1 addition & 1 deletion biliTwinBabelCompiled.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -8197,7 +8197,7 @@ var BiliTwin = function (_BiliUserJS) {
return UI.hintInfo(t, _this50.playerWin);
});
_context70.next = 20;
return Promise.all([this.polyfill.setFunctions()]);
return this.polyfill.setFunctions();

case 20:

Expand Down
2 changes: 1 addition & 1 deletion src/bilitwin.entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class BiliTwin extends BiliUserJS {
// 2. monkey and polyfill
this.monkey = new BiliMonkey(this.playerWin, this.option);
this.polyfill = new BiliPolyfill(this.playerWin, this.option, t => UI.hintInfo(t, this.playerWin));
await Promise.all([this.polyfill.setFunctions()]);
await this.polyfill.setFunctions()

// 3. async consistent => render UI
const cidRefresh = BiliTwin.getCidRefreshPromise(this.playerWin);
Expand Down

0 comments on commit 56c56de

Please sign in to comment.