From 02dba3da11598b01ae9918f0cce477b67349cfc4 Mon Sep 17 00:00:00 2001 From: Waseem Daher Date: Tue, 13 Aug 2013 10:41:02 -0400 Subject: [PATCH] iframe-bot: Don't show tweets. (imported from commit 584fdbfa50e2ff1d3526f741e96ef6691fa731e1) --- tools/iframe-bot/show-last-messages | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/iframe-bot/show-last-messages b/tools/iframe-bot/show-last-messages index ca034e6cf3..30617ff460 100755 --- a/tools/iframe-bot/show-last-messages +++ b/tools/iframe-bot/show-last-messages @@ -144,6 +144,9 @@ for msg in result['messages']: if msg['type'] != 'stream': # Don't show PMs the bot got continue + if msg['sender_full_name'] == 'TwitterBot': + # Don't put tweets in the iframe + continue uniwrite(f,'
')