From 008821706ed57b440f5216d1e7c0dca5978e657f Mon Sep 17 00:00:00 2001 From: Packit Service Date: Dec 09 2020 21:54:08 +0000 Subject: Apply patch meanwhile-status-timestamp-workaround.patch patch_name: meanwhile-status-timestamp-workaround.patch present_in_specfile: true --- diff --git a/src/common.c b/src/common.c index c8f78ca..9a7c6b9 100644 --- a/src/common.c +++ b/src/common.c @@ -688,6 +688,9 @@ void mwUserStatus_get(struct mwGetBuffer *b, struct mwUserStatus *stat) { guint16_get(b, &stat->status); guint32_get(b, &stat->time); mwString_get(b, &stat->desc); + + // Quick'n ugly hack for recent Sametime clients + stat->time = 0; }