1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

trim env urls

This commit is contained in:
Kyle Spearrin
2019-02-15 16:53:01 -05:00
parent a19a30ffed
commit c37a52be85

View File

@@ -103,6 +103,6 @@ export class EnvironmentService implements EnvironmentServiceAbstraction {
url = 'https://' + url; url = 'https://' + url;
} }
return url; return url.trim();
} }
} }