Fix error after publishing of a draft content (#6286)

This commit is contained in:
Yuriy Bakhtin 2023-05-03 13:24:14 +04:00 committed by GitHub
parent 7e391224f7
commit b034c24fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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)
-----------------------

View File

@ -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);