We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe221cb commit 8687ce1Copy full SHA for 8687ce1
source/lib/financials/balances.js
@@ -60,7 +60,10 @@ async function fetchBalancesFromServer(): Promise<BalancesOrErrorType> {
60
username: username,
61
password: password,
62
})
63
- let loginResponse = await fetch(OLECARD_AUTH_URL, {method: 'POST', body: form})
+ let loginResponse = await fetch(OLECARD_AUTH_URL, {
64
+ method: 'POST',
65
+ body: form,
66
+ })
67
68
if (loginResponse.url.includes('message=')) {
69
return {error: true, value: new Error('login failed!')}
0 commit comments