mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-12-16 23:29:47 +00:00
Correction liens vo
This commit is contained in:
parent
638288279b
commit
5523d13988
1 changed files with 19 additions and 1 deletions
|
|
@ -174,6 +174,15 @@ namespace AideDeJeu.ViewModels
|
||||||
await Navigator.GotoSpellDetailPageAsync(spell);
|
await Navigator.GotoSpellDetailPageAsync(spell);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (file == "spells_vo")
|
||||||
|
{
|
||||||
|
var spells = await GetItemsViewModel(ItemSourceType.SpellVO).GetAllItemsAsync();
|
||||||
|
var spell = spells.Where(i => i.Id == anchor).FirstOrDefault();
|
||||||
|
if (spell != null)
|
||||||
|
{
|
||||||
|
await Navigator.GotoSpellDetailPageAsync(spell);
|
||||||
|
}
|
||||||
|
}
|
||||||
else if (file == "monsters_hd")
|
else if (file == "monsters_hd")
|
||||||
{
|
{
|
||||||
var monsters = await GetItemsViewModel(ItemSourceType.MonsterHD).GetAllItemsAsync();
|
var monsters = await GetItemsViewModel(ItemSourceType.MonsterHD).GetAllItemsAsync();
|
||||||
|
|
@ -183,9 +192,18 @@ namespace AideDeJeu.ViewModels
|
||||||
await Navigator.GotoMonsterDetailPageAsync(monster);
|
await Navigator.GotoMonsterDetailPageAsync(monster);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (file == "monsters_vo")
|
||||||
|
{
|
||||||
|
var monsters = await GetItemsViewModel(ItemSourceType.MonsterVO).GetAllItemsAsync();
|
||||||
|
var monster = monsters.Where(i => i.Id == anchor).FirstOrDefault();
|
||||||
|
if (monster != null)
|
||||||
|
{
|
||||||
|
await Navigator.GotoMonsterDetailPageAsync(monster);
|
||||||
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Device.OpenUri(new Uri(s));
|
//Device.OpenUri(new Uri(s));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue