diff --git a/dist/bundle.es.js b/dist/bundle.es.js
index 6cbd8da..6590dc8 100644
--- a/dist/bundle.es.js
+++ b/dist/bundle.es.js
@@ -1559,7 +1559,8 @@ const doCheckSubscription = (subscriptionUri, shouldNotify) => (dispatch, getSta
     channel_name: subscriptionUri,
     page: 1,
     page_size: PAGE_SIZE,
-    winning: true
+    valid_channel_signature: true,
+    order_by: ['release_time']
   }).then(result => {
     const {
       items: claimsInChannel
diff --git a/dist/bundle.js b/dist/bundle.js
index ce7d3fa..0c5cf2b 100644
--- a/dist/bundle.js
+++ b/dist/bundle.js
@@ -2554,7 +2554,8 @@ var doCheckSubscription = function doCheckSubscription(subscriptionUri, shouldNo
       channel_name: subscriptionUri,
       page: 1,
       page_size: constants_claim__WEBPACK_IMPORTED_MODULE_0__["PAGE_SIZE"],
-      winning: true
+      valid_channel_signature: true,
+      order_by: ['release_time']
     }).then(function (result) {
       var claimsInChannel = result.items; // may happen if subscribed to an abandoned channel or an empty channel
 
diff --git a/src/redux/actions/subscriptions.js b/src/redux/actions/subscriptions.js
index 9984f60..6e969e8 100644
--- a/src/redux/actions/subscriptions.js
+++ b/src/redux/actions/subscriptions.js
@@ -161,7 +161,8 @@ export const doCheckSubscription = (subscriptionUri: string, shouldNotify?: bool
     channel_name: subscriptionUri,
     page: 1,
     page_size: PAGE_SIZE,
-    winning: true,
+    valid_channel_signature: true,
+    order_by: ['release_time'],
   }).then(result => {
     const { items: claimsInChannel } = result;