From ea03e4d34aac946be483c4c3713ed2fc30e39174 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Mon, 30 Dec 2019 17:20:46 +0100 Subject: [PATCH] Send location.kml instead of message.kml for streaming message.kml is sent when user manually selects a point on the map to point to a location. --- src/mimefactory.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mimefactory.rs b/src/mimefactory.rs index 449f3f4e0..f99a49715 100644 --- a/src/mimefactory.rs +++ b/src/mimefactory.rs @@ -894,7 +894,7 @@ impl<'a, 'b> MimeFactory<'a, 'b> { ) .header(( "Content-Disposition", - "attachment; filename=\"message.kml\"", + "attachment; filename=\"location.kml\"", )) .body(kml_content), );