diff --git a/src/store/call-recordings.js b/src/store/call-recordings.js index f52390a5..2d3a0c47 100644 --- a/src/store/call-recordings.js +++ b/src/store/call-recordings.js @@ -44,7 +44,8 @@ export default { async fetchRecordings (context, options) { const recs = await getRecordings({ ...options, - subscriber_id: context.getters.subscriberId + subscriber_id: context.getters.subscriberId, + wildcards: true }) context.commit('callRecordings', recs.recordings) return recs.total_count diff --git a/src/store/conversations/actions.js b/src/store/conversations/actions.js index 50bb4e0b..64b53e0d 100644 --- a/src/store/conversations/actions.js +++ b/src/store/conversations/actions.js @@ -109,6 +109,9 @@ export default { from: _.get(options, 'filter.from', ''), to: _.get(options, 'filter.to', ''), direction: _.get(options, 'filter.direction', ''), + caller: _.get(options, 'filter.caller', ''), + callee: _.get(options, 'filter.callee', ''), + wildcards: true, no_count: true }) context.commit('nextPageSucceeded', res)