1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-29 22:45:44 +00:00

Un test de plus...

This commit is contained in:
Yan Maniez 2018-12-19 12:23:42 +01:00
parent cbea03680d
commit 4b88c3f66f
3 changed files with 7 additions and 6 deletions

View file

@ -1,11 +1,11 @@
#pragma warning disable 1591
//------------------------------------------------------------------------------
// <auto-generated>
// Ce code a été généré par un outil.
// Version du runtime :4.0.30319.42000
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
// le code est régénéré.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

View file

@ -27,7 +27,7 @@
<key>CFBundleIdentifier</key>
<string>com.nioux.AideDeJeu</string>
<key>CFBundleVersion</key>
<string>1.0.3</string>
<string>1.0.4</string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>XSAppIconAssets</key>

View file

@ -429,8 +429,9 @@ namespace AideDeJeu.ViewModels
return await context.Items.Where(item => item.Id == id || item.RootId == id).FirstOrDefaultAsync();
}
}
catch
catch(Exception ex)
{
await App.Current.MainPage.DisplayAlert("Lien invalide", ex.Message, "OK");
return null;
}
finally