diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f84af81ed..09a7a8c33c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ HumHub Changelog - Fix #6265: Broken HMTL in Visibility and Hidden Checkbox - Enh #6242: Submit button hidden when editing a comment having a long "code" line - Fix #6282: Hard delete content records on integrity check +- Fix #6257: Fix error after publishing of a draft content 1.14.0 (April 20, 2023) ----------------------- diff --git a/protected/humhub/modules/stream/resources/js/humhub.stream.StreamEntry.js b/protected/humhub/modules/stream/resources/js/humhub.stream.StreamEntry.js index a0482313c5..86b94a5d79 100644 --- a/protected/humhub/modules/stream/resources/js/humhub.stream.StreamEntry.js +++ b/protected/humhub/modules/stream/resources/js/humhub.stream.StreamEntry.js @@ -328,7 +328,7 @@ humhub.module('stream.StreamEntry', function (module, require, $) { var that = this; this.loader(); client.post(evt.url).then(function (data) { - that.stream().init(); + that.reload(); module.log.info(data.message, true); }).catch(function (e) { module.log.error(e, true);