diff --git a/src/web/app/mobile/tags/post-detail.tag b/src/web/app/mobile/tags/post-detail.tag
index 0fd63e832..44662a9e5 100644
--- a/src/web/app/mobile/tags/post-detail.tag
+++ b/src/web/app/mobile/tags/post-detail.tag
@@ -4,8 +4,8 @@
@@ -441,14 +441,14 @@
};
this.loadContext = () => {
- this.loadingContext = true;
+ this.contextFetching = true;
// Fetch context
this.api('posts/context', {
post_id: this.p.reply_to_id
}).then(context => {
this.update({
- loadContext: false,
+ contextFetching: false,
context: context.reverse()
});
});