aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/v3/feed.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/views/api/v3/feed.py')
-rw-r--r--src/web/views/api/v3/feed.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/views/api/v3/feed.py b/src/web/views/api/v3/feed.py
index ef1b415f..a97aa415 100644
--- a/src/web/views/api/v3/feed.py
+++ b/src/web/views/api/v3/feed.py
@@ -11,7 +11,7 @@ class FeedProcessor(AbstractProcessor):
# instance of the model.
contr = FeedController(current_user.id)
feed = contr.get(id=instance_id)
- if not self.is_authorized_to_modify(current_user, feed):
+ if not self.is_authorized(current_user, feed):
raise ProcessingException(description='Not Authorized', code=401)
bgstack15