Fix listID not being passed in bulk sub deletion. Closes #384

This commit is contained in:
Kailash Nadh 2021-06-04 19:32:42 +05:30
parent baca95e4eb
commit bbffbbc5f3

View file

@ -374,7 +374,7 @@ export default Vue.extend({
fn = () => {
this.$api.blocklistSubscribersByQuery({
query: this.queryParams.queryExp,
list_ids: [],
list_ids: [this.queryParams.listID],
}).then(() => this.querySubscribers());
};
}
@ -409,7 +409,7 @@ export default Vue.extend({
fn = () => {
this.$api.deleteSubscribersByQuery({
query: this.queryParams.queryExp,
list_ids: [],
list_ids: [this.queryParams.listID],
}).then(() => {
this.querySubscribers();