Merge pull request #1773 from thelounge/astorije/fix-default-from

Fix default value given to `Msg.from`
This commit is contained in:
Pavel Djundik 2017-11-30 11:25:30 +02:00 committed by GitHub
commit bdbdb69f02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{{#if from}}
{{#if from.nick}}
{{> ../user_name from}}
has changed the topic to:
{{else}}

View file

@ -3,7 +3,7 @@
{{tz time}}
</span>
<span class="from">
{{#if from}}
{{#if from.nick}}
{{> user_name from}}
{{/if}}
</span>

View file

@ -7,7 +7,7 @@ var id = 0;
class Msg {
constructor(attr) {
_.defaults(this, attr, {
from: "",
from: {},
id: id++,
previews: [],
text: "",