Skip to content

Commit

Permalink
Fix listID not being passed in bulk sub deletion. Closes #384
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Jun 4, 2021
1 parent baca95e commit bbffbbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/views/Subscribers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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());
};
}
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit bbffbbc

Please sign in to comment.