Added bootjar build

- Fixed spelling mistake in home
- Fixed date bug
This commit is contained in:
2024-02-19 20:55:16 +01:00
parent 78f32c4f64
commit ed82e2e3f2
4 changed files with 13 additions and 1 deletions

View File

@ -65,6 +65,9 @@ public class FileUploadRepository {
Type type = new TypeToken<Map<String, Object>>(){}.getType();
Map<String, Object> map = gson.fromJson(json, type);
long uploadDateTimestamp = updatedFileUpload.getUploadDate().getTime() / 1000;
map.put("uploadDate", uploadDateTimestamp);
String fileId = updatedFileUpload.getFileId();
r.db("sharepulse").table("file_uploads")