File tree Expand file tree Collapse file tree 3 files changed +12
-8
lines changed
Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -285,12 +285,12 @@ function getBackupToken(service: string) {
285285 xhr . open (
286286 "POST" ,
287287 "https://www.googleapis.com/oauth2/v4/token?client_id=" +
288- getCredentials ( ) . drive . client_id +
289- "&client_secret=" +
290- getCredentials ( ) . drive . client_secret +
291- "&code=" +
292- value +
293- "&redirect_uri=https://authenticator.cc/oauth&grant_type=authorization_code"
288+ getCredentials ( ) . drive . client_id +
289+ "&client_secret=" +
290+ getCredentials ( ) . drive . client_secret +
291+ "&code=" +
292+ value +
293+ "&redirect_uri=https://authenticator.cc/oauth&grant_type=authorization_code"
294294 ) ;
295295 xhr . setRequestHeader ( "Accept" , "application/json" ) ;
296296 xhr . setRequestHeader (
Original file line number Diff line number Diff line change @@ -68,7 +68,9 @@ export class Encryption implements IEncryption {
6868 }
6969
7070 console . warn (
71- `Account ${ entry . hash } may have secret ${ decryptedSecret } , but hash did not match.`
71+ `Account ${
72+ entry . hash
73+ } may have secret ${ decryptedSecret } , but hash did not match.`
7274 ) ;
7375 return null ;
7476 } catch ( error ) {
Original file line number Diff line number Diff line change @@ -60,7 +60,9 @@ function getQrDebug(
6060 `Screen Height: ${ window . screen . height } <br>` +
6161 `Capture Width: ${ qr . width } <br>` +
6262 `Capture Height: ${ qr . height } <br>` +
63- `Device Pixel Ratio: ${ devicePixelRatio } / ${ window . devicePixelRatio } <br>` +
63+ `Device Pixel Ratio: ${ devicePixelRatio } / ${
64+ window . devicePixelRatio
65+ } <br>` +
6466 `Tab ID: ${ tab . id } <br>` +
6567 "<br>" +
6668 "<b>Captured Screenshot:</b>" ;
You can’t perform that action at this time.
0 commit comments