From 7292fe11254109266e7adb9937e5f0fa797711f6 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 1 Nov 2020 12:19:30 +0100 Subject: Matrix: add invites tab, add /leave command, remove room when leaving, add async loading for more tasks --- include/Body.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/Body.hpp') diff --git a/include/Body.hpp b/include/Body.hpp index 1a82443..99f8b1c 100644 --- a/include/Body.hpp +++ b/include/Body.hpp @@ -59,8 +59,9 @@ namespace QuickMedia { dirty_author = true; } + // |new_timestamp| is in milliseconds void set_timestamp(time_t new_timestamp) { - if(timestamp == 0 && new_timestamp == 0) + if(new_timestamp == timestamp) return; timestamp = new_timestamp; dirty_timestamp = true; @@ -90,6 +91,7 @@ namespace QuickMedia { const std::string& get_title() const { return title; } const std::string& get_description() const { return description; } const std::string& get_author() const { return author; } + // In milliseconds time_t get_timestamp() const { return timestamp; } sf::Color get_title_color() const { return title_color; } -- cgit v1.2.3