New idiot bugfixes

This commit is contained in:
2016-01-20 22:17:03 +01:00
parent 3565e3860b
commit 7155b37867
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -151,7 +151,7 @@ namespace YJMPD_UWP.Model
JObject obj = JObject.FromObject(new
{
command = Command.PictureUrl.ToString(),
pictureurl = url,
PictureUrl = url,
lon = App.Geo.Position.Coordinate.Point.Position.Longitude,
lat = App.Geo.Position.Coordinate.Point.Position.Latitude
});
+1
View File
@@ -72,6 +72,7 @@ namespace YJMPD_UWP.Model
{
Players = new List<Player>();
Status = GameStatus.STOPPED;
Selected = false;
App.Photo.OnStatusUpdate += Photo_OnStatusUpdate;
GeofenceMonitor.Current.GeofenceStateChanged += Current_GeofenceStateChanged;
}
+2 -1
View File
@@ -7,7 +7,8 @@ namespace YJMPD_UWP.ViewModels
{
public MatchVM() : base("Match")
{
Error = "";
Message = "";
App.Game.OnDestinationEnter += Game_OnDestinationEnter;
App.Game.OnDestinationLeave += Game_OnDestinationLeave;
}