fix: logic failure causing remote posts with image to not parse properly, #13164

This commit is contained in:
Julian Lam
2025-02-16 14:27:57 -05:00
parent 0fed9a76c0
commit d936d5c073

View File

@@ -190,7 +190,7 @@ Mocks.post = async (objects) => {
}
switch (true) {
case image && image.hasOwnProperty('url') && image.url: {
case image && image.hasOwnProperty('url') && !!image.url: {
image = image.url;
break;
}