Fixed a circular ref in date change messages
line.buffer was the actual buffer object, which contains the injected date change message itself. Made this just a buffer id.
This commit is contained in:
parent
a50d72a3b5
commit
48cc2356a6
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ weechat.factory('handlers', ['$rootScope', '$log', 'models', 'plugins', 'notific
|
||||||
content += ")";
|
content += ")";
|
||||||
|
|
||||||
var line = {
|
var line = {
|
||||||
buffer: buffer,
|
buffer: buffer.id,
|
||||||
date: new_date,
|
date: new_date,
|
||||||
prefix: '\u001943\u2500',
|
prefix: '\u001943\u2500',
|
||||||
tags_array: [],
|
tags_array: [],
|
||||||
|
|
Loading…
Reference in a new issue