diff --git a/src/Artemis.UI/Screens/Workshop/Image/ImageSubmissionViewModel.cs b/src/Artemis.UI/Screens/Workshop/Image/ImageSubmissionViewModel.cs index abf211c8e..f0cdee4a0 100644 --- a/src/Artemis.UI/Screens/Workshop/Image/ImageSubmissionViewModel.cs +++ b/src/Artemis.UI/Screens/Workshop/Image/ImageSubmissionViewModel.cs @@ -93,6 +93,14 @@ public partial class ImageSubmissionViewModel : ValidatableViewModelBase Name = vm.Name; Description = vm.Description; + // TODO: Just get rid of this stupid mechanism + if (ImageUploadRequest != null) + { + if (Name != null) + ImageUploadRequest.Name = Name; + ImageUploadRequest.Description = Description; + } + return result; } } \ No newline at end of file