Skip to content

Commit

Permalink
pinned repo fetch api link fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shettysach committed Nov 21, 2024
1 parent 658be37 commit 3e34503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/fetch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ async fn fetch_github() -> String {
async fn fetch_repos() -> String {
match read_config() {
Some(config) => {
let repos_url = format!("https://pinned.berrysauce.me/dev/{}", config.github);
let repos_url = format!("https://pinned.berrysauce.dev/get/{}", config.github);

match reqwest::get(&repos_url).await {
Ok(response) => {
Expand Down

0 comments on commit 3e34503

Please sign in to comment.