fix uploading of photos to existing trail (#294)

This commit is contained in:
slothful-vassal
2025-06-26 13:00:56 +02:00
committed by GitHub
parent 9a724a5534
commit 9043fff817
2 changed files with 4 additions and 3 deletions

View File

@@ -300,7 +300,7 @@ export async function trails_update(oldTrail: Trail, newTrail: Trail, photos?: F
if (photos) {
for (const photo of photos) {
formData.append("photos", photo)
formData.append("photos+", photo)
}
}