Change prefix when switch to public or mine stream
authorLukas Pohlreich <pohlreichlukas@gmail.com>
Sat, 27 Sep 2014 07:34:00 +0000 (09:34 +0200)
committerLukas Pohlreich <pohlreichlukas@gmail.com>
Sat, 27 Sep 2014 07:34:00 +0000 (09:34 +0200)
rainbowstream/rainbow.py

index eca57943cb0489f4963f40c5987325f80b502349..bd421d24664cef082e715038b63dcd8fe41182b7 100644 (file)
@@ -1195,6 +1195,8 @@ def switch():
             # Kill old thread
             g['stream_stop'] = True
             args.track_keywords = keyword
+            # Set prefix to origin name with public
+            g['PREFIX'] = '@' + g['original_name'] + '/public'
             # Start new thread
             th = threading.Thread(
                 target=stream,
@@ -1207,6 +1209,8 @@ def switch():
         elif target == 'mine':
             # Kill old thread
             g['stream_stop'] = True
+            # Set prefix to origin name
+            g['PREFIX'] = '@' + g['original_name']
             # Start new thread
             th = threading.Thread(
                 target=stream,