fix #444: url display

This commit is contained in:
antelle 2017-01-29 13:04:49 +01:00
parent 60e59da94d
commit a8cc4581f7
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ var EntryModel = Backbone.Model.extend({
this.password = entry.fields.Password || kdbxweb.ProtectedValue.fromString('');
this.notes = this._getFieldString('Notes');
this.url = this._getFieldString('URL');
this.displayUrl = this._getDisplayUrl(this._getFieldString(entry.fields.URL));
this.displayUrl = this._getDisplayUrl(this._getFieldString('URL'));
this.user = this._getFieldString('UserName');
this.iconId = entry.icon;
this.icon = this._iconFromId(entry.icon);