aboutsummaryrefslogtreecommitdiff
path: root/back-end/src/Endpoints
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-01-22 12:20:57 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-01-22 12:20:57 -0500
commit03b6cee1ac70c01be5f97688b0af6da8cab84236 (patch)
treeaa994632faf48db087fdcfce714badb3074bb527 /back-end/src/Endpoints
parent32553068b151712100826b6de6b0c68f7f46f9cc (diff)
optional auto-correct upload errors
Diffstat (limited to 'back-end/src/Endpoints')
-rw-r--r--back-end/src/Endpoints/BookmarkEndpoint.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/back-end/src/Endpoints/BookmarkEndpoint.cs b/back-end/src/Endpoints/BookmarkEndpoint.cs
index b7825d6..ec46097 100644
--- a/back-end/src/Endpoints/BookmarkEndpoint.cs
+++ b/back-end/src/Endpoints/BookmarkEndpoint.cs
@@ -317,7 +317,7 @@ namespace SimpleBookmark.Endpoints
}
//Try to update the records
- ERRNO result = await Bookmarks.AddBulkAsync(sanitized, entity.Session.UserID, false, entity.EventCancellation);
+ ERRNO result = await Bookmarks.AddBulkAsync(sanitized, entity.Session.UserID, entity.RequestedTimeUtc, entity.EventCancellation);
webm.Result = $"Successfully added {result} of {batch.Length} bookmarks";
webm.Success = true;