1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-04 05:08:06 +02: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;
}
return url;
return url.trim();
}
}