syntax fixes

This commit is contained in:
Kyle Spearrin 2017-04-12 16:14:29 -04:00
parent 40f9961541
commit 0591f106d3
2 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ angular
tokenService.setRefreshToken(response.refresh_token); tokenService.setRefreshToken(response.refresh_token);
return response.access_token; return response.access_token;
}); });
} };
return _service; return _service;
}); });

View File

@ -232,7 +232,7 @@
} }
logins.push({ logins.push({
favorite: value.favorite && value.favorite !== '' && && value.favorite !== '0', favorite: value.favorite && value.favorite !== '' && value.favorite !== '0',
uri: value.uri && value.uri !== '' ? trimUri(value.uri) : null, uri: value.uri && value.uri !== '' ? trimUri(value.uri) : null,
username: value.username && value.username !== '' ? value.username : null, username: value.username && value.username !== '' ? value.username : null,
password: value.password && value.password !== '' ? value.password : null, password: value.password && value.password !== '' ? value.password : null,