Merge branch 'master' into enh/4088

This commit is contained in:
buddh4 2020-05-13 20:30:02 +02:00 committed by GitHub
commit 01a6ad3a92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -11,8 +11,10 @@ HumHub Change Log
- Fix #4078: Richtext linkextension pattern fails on link extensions with containing `)` in link title
- Fix #4080: Invalid absolute urls created in acceptance tests
- Fix #4030: #search-menu-nav required in theme view layout main
- Fix #4086: Maximum call stack size exceeded thrown on ActivityStreamEntry.remove
- Enh #4088: Improved table overflow handling in richtext content
1.5.1 (April 19, 2020)
----------------------

View File

@ -384,7 +384,7 @@ humhub.module('stream.StreamEntry', function (module, require, $) {
*/
StreamEntry.prototype.remove = function () {
var stream = this.stream();
return this.super('remove').then($.proxy(stream.onChange, stream));
return Content.prototype.remove.call(this).then($.proxy(stream.onChange, stream));
};
module.export = StreamEntry;