Skip to content

Commit

Permalink
fix: fixed background picture URI
Browse files Browse the repository at this point in the history
  • Loading branch information
krypt0nn committed Aug 3, 2024
1 parent cd966d5 commit 2b1c098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/background.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub fn get_background_info() -> anyhow::Result<Background> {
.iter()
.find(|game| {
match game["game"]["biz"].as_str() {
Some(biz) => biz.starts_with("hkrpg_"),
Some(biz) => biz.starts_with("bh3_"),
_ => false
}
})
Expand Down

0 comments on commit 2b1c098

Please sign in to comment.