Fix tab cookie

This commit is contained in:
Ken-Håvard Lieng 2017-06-21 09:45:47 +02:00
parent 1c199f40e2
commit f7b80b413e
4 changed files with 27 additions and 24 deletions

View file

@ -16,7 +16,7 @@ class Tab extends TabRecord {
toString() {
let str = this.server;
if (this.name) {
str += `-${this.name}`;
str += `;${this.name}`;
}
return str;
}