From e5db01083cc13df3696bb30562a83d729280ac03 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 18 Jun 2018 08:33:09 -0400 Subject: [PATCH] switch icons server to icons.bitwarden.net --- src/angular/components/icon.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/angular/components/icon.component.ts b/src/angular/components/icon.component.ts index cac8d381a2c..4b127c07db9 100644 --- a/src/angular/components/icon.component.ts +++ b/src/angular/components/icon.component.ts @@ -32,7 +32,7 @@ export class IconComponent implements OnChanges { if (environmentService.baseUrl) { this.iconsUrl = environmentService.baseUrl + '/icons'; } else { - this.iconsUrl = 'https://icons.bitwarden.com'; + this.iconsUrl = 'https://icons.bitwarden.net'; } } }