FIX: Always reload post's raw when editing a post (#14085)

Sometimes the message bus update can be delayed and editing a post when
that happens will automatically result in a draft conflict.
This commit is contained in:
Bianca Nenciu 2021-08-19 15:29:48 +03:00 committed by GitHub
parent 5eb4e642a6
commit a56122f2d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -831,22 +831,13 @@ const Composer = RestModel.extend({
this.setProperties(topicProps); this.setProperties(topicProps);
promise = promise.then(() => { promise = promise.then(() => {
let rawPromise = Promise.resolve(); let rawPromise = this.store.find("post", opts.post.id).then((post) => {
if (!this.post.raw) {
rawPromise = this.store.find("post", opts.post.id).then((post) => {
this.setProperties({ this.setProperties({
post, post,
reply: post.raw, reply: post.raw,
originalText: post.raw, originalText: post.raw,
}); });
}); });
} else {
this.setProperties({
reply: this.post.raw,
originalText: this.post.raw,
});
}
// edge case ... make a post then edit right away // edge case ... make a post then edit right away
// store does not have topic for the post // store does not have topic for the post