Skip to content

Commit

Permalink
Fix issue caching org members and admins (#114)
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Castaño Arteaga <[email protected]>
  • Loading branch information
tegioz authored Oct 12, 2023
1 parent 830379b commit c5c1d7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clowarden-core/src/services/github/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ impl Svc for SvcApi {
sync_writes = true,
result = true,
key = "String",
convert = r#"{ format!("") }"#
convert = r#"{ format!("{}", org) }"#
)]
async fn inner(client: &Client, org: &str) -> Result<Vec<SimpleUser>> {
let members = client
Expand All @@ -416,7 +416,7 @@ impl Svc for SvcApi {
sync_writes = true,
result = true,
key = "String",
convert = r#"{ format!("") }"#
convert = r#"{ format!("{}", org) }"#
)]
async fn inner(client: &Client, org: &str) -> Result<Vec<SimpleUser>> {
let members = client
Expand Down

0 comments on commit c5c1d7e

Please sign in to comment.