mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
Make orders strings instead of usize (#63)
This commit is contained in:
@@ -7,7 +7,7 @@ pub struct OriginGame {
|
||||
impl From<OriginGame> for ShortcutOwned {
|
||||
fn from(game: OriginGame) -> Self {
|
||||
let launch = format!("origin2://game/launch?offerIds={}&autoDownload=1", game.id);
|
||||
let shortcut = Shortcut::new(0, game.title.as_str(), launch.as_str(), "", "", "", "");
|
||||
let shortcut = Shortcut::new("0", game.title.as_str(), launch.as_str(), "", "", "", "");
|
||||
let mut owned_shortcut = shortcut.to_owned();
|
||||
owned_shortcut.tags.push("Origin".to_owned());
|
||||
owned_shortcut.tags.push("Ready TO Play".to_owned());
|
||||
|
||||
Reference in New Issue
Block a user