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}} {{> ../user_name from}}
has changed the topic to: has changed the topic to:
{{else}} {{else}}

View file

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

View file

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