From 5020307a6c01122706dff1e835d8f0a93495bb23 Mon Sep 17 00:00:00 2001
From: Ruben Barkow <rubo77@users.noreply.github.com>
Date: Mon, 2 Jan 2017 01:44:04 +0100
Subject: [PATCH] Add a &nbsp; after timestamp

This solves part of the problem that the timestamp is  gluing at the message, when copied in your clipboard.

Example:

    23:02test message

see https://github.com/vector-im/riot-web/issues/893
---
 src/components/views/messages/MessageTimestamp.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/components/views/messages/MessageTimestamp.js b/src/components/views/messages/MessageTimestamp.js
index dda87767a6..3a8dd91dc0 100644
--- a/src/components/views/messages/MessageTimestamp.js
+++ b/src/components/views/messages/MessageTimestamp.js
@@ -26,9 +26,8 @@ module.exports = React.createClass({
         var date = new Date(this.props.ts);
         return (
             <span className="mx_MessageTimestamp">
-                { DateUtils.formatTime(date) }
+                { DateUtils.formatTime(date)+'&nbsp;' }
             </span>
         );
     },
 });
-