Skip to content

Commit

Permalink
fix(bot): fix /roll fetch url
Browse files Browse the repository at this point in the history
  • Loading branch information
eatradish committed May 19, 2024
1 parent f4f0a32 commit 85ecc3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/bot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ impl Display for UpdatePkg {
async fn roll() -> anyhow::Result<Vec<UpdatePkg>> {
let client = ClientBuilder::new().user_agent("buildit").build()?;
let resp = client
.get("https://github.com/AOSC-Dev/anicca/raw/main/pkgsupdate.json")
.get("https://raw.githubusercontent.com/AOSC-Dev/anicca/main/pkgsupdate.json")
.send()
.await?;

Expand Down

0 comments on commit 85ecc3b

Please sign in to comment.