mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-28 04:19:41 -08:00
fix(oauth): correct expires_in data type
This commit is contained in:
parent
df8011fc88
commit
7e35ff4fbc
|
@ -30,9 +30,9 @@ function Auth() {
|
|||
...
|
||||
"properties": {
|
||||
// highlight-start
|
||||
"access_token":"${params.access_token}",
|
||||
"refresh_token":"${params.refresh_token}",
|
||||
"expires_in":"${params.expires_in}"
|
||||
"access_token": "${params.access_token}",
|
||||
"refresh_token": "${params.refresh_token}",
|
||||
"expires_in": ${params.expires_in}
|
||||
// highlight-end
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue