Skip to content
This repository was archived by the owner on May 31, 2022. It is now read-only.

Commit d72707f

Browse files
authored
fix: don't cache title and use port as title dep (#361)
1 parent 8713972 commit d72707f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/extended-model.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ const ExtendedConnection = Connection.extend(storageMixin, {
7676
'isFavorite',
7777
'isSrvRecord',
7878
'hostname',
79+
'port',
7980
'hosts'
8081
],
8182
fn() {
@@ -94,7 +95,8 @@ const ExtendedConnection = Connection.extend(storageMixin, {
9495
}
9596

9697
return `${this.hostname}:${this.port}`;
97-
}
98+
},
99+
cache: false
98100
}
99101
},
100102
serialize() {

0 commit comments

Comments
 (0)