From 5eeb2a700009a32421306c8605f9f520bcdead88 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 29 Jun 2018 16:00:05 +0800 Subject: [PATCH] src/strip.vala --- src/strip.vala | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/strip.vala b/src/strip.vala index b56ce44..ec041cd 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -471,6 +471,21 @@ public class Strip : GLib.Object { file_size )); + this.query(""" + SELECT attachment_update( + %d, -- in_id INT(11), + '%s', -- in_mime_type varchar(255), + '%s', -- in_created DATETIME, + '%s' -- in_mailfort_sig varchar(64) + ) + """.printf( + id, + "", // this will be ignored.. + this.created_date, + this.mysql_escape(this.active_message_x_mailfort_sig) + + ) + ); GLib.error("added attachment?"); } -- 2.39.2