Skip to content

Commit

Permalink
v2019.09.04
Browse files Browse the repository at this point in the history
  • Loading branch information
pypy committed Sep 4, 2019
1 parent 800a649 commit 9644270
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions html/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,4 @@ i.x-user-status.busy {
border: 0;
border-radius: 2px;
padding: 0;
}

.x-user-dialog .el-tag+.el-tag {
margin-left: 5px;
}
4 changes: 2 additions & 2 deletions html/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ if (window.CefSharp) {
return this.call(`auth/user?apiKey=${this.config.clientApiKey}`, {
method: 'GET',
headers: {
Authorization: `Basic ${btoa(encodeURIComponent(`${param.username}:${param.password}`).replace(/%([0-9A-F]{2})/gu, (_, s) => String.fromCharCode(parseInt(s, 16))))}`
Authorization: `Basic ${btoa(encodeURIComponent(`${param.username}:${param.password}`).replace(/%([0-9A-F]{2})/gu, (_, s) => String.fromCharCode(parseInt(s, 16))).replace('%', '%25'))}`
}
}).then((json) => {
var args = {
Expand Down Expand Up @@ -3414,7 +3414,7 @@ if (window.CefSharp) {
VRCX,
nextRefresh: 0,
isGameRunning: false,
appVersion: '2019.08.17.1',
appVersion: '2019.09.04',
latestAppVersion: '',
ossDialog: false
},
Expand Down

0 comments on commit 9644270

Please sign in to comment.