aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-07-06 19:42:37 +0200
committerdec05eba <dec05eba@protonmail.com>2021-07-06 19:42:37 +0200
commit2d3194c886d6f2e68cee217364cecab2696377d8 (patch)
tree3a7b1f55f5e6b9870cc4e08468b89e382f1c2b48 /src
parent3b1458784942574222f8fea5b2ab2f8accaac6b8 (diff)
Attempt to fix compile error on ubuntu 20.04
Diffstat (limited to 'src')
-rw-r--r--src/QuickMedia.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/QuickMedia.cpp b/src/QuickMedia.cpp
index 0914df2..b4d1e7c 100644
--- a/src/QuickMedia.cpp
+++ b/src/QuickMedia.cpp
@@ -2759,7 +2759,7 @@ namespace QuickMedia {
Json::Value new_content_object(Json::objectValue);
new_content_object["id"] = video_id;
new_content_object["title"] = video_title;
- new_content_object["timestamp"] = time_now;
+ new_content_object["timestamp"] = (Json::Int64)time_now;
video_history_json.append(std::move(new_content_object));