Fix game server photo deletion bug

Fix bug where users couldn't delete photos with empty subjects
This commit is contained in:
Slendy 2022-11-12 11:21:31 -06:00
parent 9750e469d8
commit 5e82827fc0
No known key found for this signature in database
GPG key ID: 7288D68361B91428

View file

@ -223,7 +223,9 @@ public class PhotosController : ControllerBase
}
foreach (string idStr in photo.PhotoSubjectIds)
{
if (!int.TryParse(idStr, out int subjectId)) throw new InvalidCastException(idStr + " is not a valid number.");
if (string.IsNullOrWhiteSpace(idStr)) continue;
if (!int.TryParse(idStr, out int subjectId)) continue;
this.database.PhotoSubjects.RemoveWhere(p => p.PhotoSubjectId == subjectId);
}