Get error message from server

This commit is contained in:
Dean Herbert
2019-11-12 19:34:20 +09:00
parent f04d7f733f
commit 58df6930b2
2 changed files with 28 additions and 8 deletions

View File

@ -71,15 +71,12 @@ namespace osu.Game.Overlays.BeatmapSet.Buttons
request.Success += () => favourited.Value = !favourited.Value;
request.Failure += exception =>
{
if (exception.Message == "UnprocessableEntity")
notifications.Post(new SimpleNotification
{
notifications.Post(new SimpleNotification
{
Text = @"You have too many favourited beatmaps! Please unfavourite some before trying again.",
Icon = FontAwesome.Solid.Times,
});
loading.Hide();
}
Text = exception.Message,
Icon = FontAwesome.Solid.Times,
});
loading.Hide();
};
api.Queue(request);
};