summaryrefslogtreecommitdiff
path: root/protocols/GmailNotifier/src/notify.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/GmailNotifier/src/notify.cpp')
-rw-r--r--protocols/GmailNotifier/src/notify.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/GmailNotifier/src/notify.cpp b/protocols/GmailNotifier/src/notify.cpp
index 5b797c221a..cd4ed69fb9 100644
--- a/protocols/GmailNotifier/src/notify.cpp
+++ b/protocols/GmailNotifier/src/notify.cpp
@@ -150,7 +150,7 @@ void NotifyUser(Account *curAcc)
resultLink *prst = curAcc->results.next;
for (int i = 0; i < newMails; i++) {
dbei.cbBlob = (uint32_t)mir_strlen(prst->content) + 1;
- dbei.pBlob = (uint8_t*)prst->content;
+ dbei.pBlob = prst->content;
db_event_add(curAcc->hContact, &dbei);
prst = prst->next;
}