(2f2a6df6a) Fixed crashing when attempting to publish a sub with a preview image larger than 1MB on the Steam Workshop. Closes #1400

This commit is contained in:
Joonas Rikkonen
2019-04-08 11:44:20 +03:00
parent ae07c3174a
commit 532e8bf122
2 changed files with 6 additions and 1 deletions
@@ -736,6 +736,11 @@ namespace Barotrauma
sub.PreviewImage.Texture.SaveAsPng(s, (int)sub.PreviewImage.size.X, (int)sub.PreviewImage.size.Y);
itemEditor.PreviewImage = previewImagePath;
}
if (new FileInfo(previewImagePath).Length > 1024 * 1024)
{
new GUIMessageBox(TextManager.Get("Error"), TextManager.Get("WorkshopItemPreviewImageTooLarge"));
itemEditor.PreviewImage = SteamManager.DefaultPreviewImagePath;
}
}
catch (Exception e)
{