Skip to content

Commit

Permalink
fix(issues): list all statuses (#29)
Browse files Browse the repository at this point in the history
close #28
  • Loading branch information
AlexanderBrevig committed Mar 5, 2024
1 parent d0a5d74 commit bf6165d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/backend.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use dashmap::DashMap;
use octocrab::models::issues::Issue;
use octocrab::models::{Author, Repository};
use octocrab::params::State;
use octocrab::Octocrab;
use ropey::Rope;
use tower_lsp::jsonrpc::Result;
Expand Down Expand Up @@ -261,6 +262,7 @@ impl Backend {
.octocrab
.issues(&self.owner, &self.repo)
.list()
.state(State::All)
.per_page(Backend::PER_PAGE)
.page(page)
.send()
Expand Down

0 comments on commit bf6165d

Please sign in to comment.