From 514b680b6ae714d938742b28d84c3571ef32421b Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Tue, 11 Jan 2011 23:25:30 +0200 Subject: [PATCH] * mu-msg-view: only open local (cached) files from attachments --- widgets/mu-msg-view.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/widgets/mu-msg-view.c b/widgets/mu-msg-view.c index 8d6bde47..3d65d55e 100644 --- a/widgets/mu-msg-view.c +++ b/widgets/mu-msg-view.c @@ -76,11 +76,11 @@ static void on_attach_activated (MuMsgView *self, guint partnum, MuMsg *msg) { gchar* filepath; - + filepath = mu_msg_part_filepath_cache (msg, partnum); if (filepath) { mu_msg_part_save (msg, filepath, partnum, FALSE, TRUE); - mu_util_play (filepath); + mu_util_play (filepath, TRUE, FALSE); g_free (filepath); } }