Skip to content

Commit

Permalink
Disable pastebin by default
Browse files Browse the repository at this point in the history
  • Loading branch information
hifi committed Jun 24, 2022
1 parent c917ffc commit 9c76084
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion heisenbridge/__main__.py
Expand Up @@ -524,7 +524,7 @@ async def run(self, listen_address, listen_port, homeserver_url, owner, safe_mod
"idents": {},
"member_sync": "half",
"max_lines": 0,
"use_pastebin": True,
"use_pastebin": False,
"media_url": None,
"namespace": self.puppet_prefix,
}
Expand Down
2 changes: 1 addition & 1 deletion heisenbridge/private_room.py
Expand Up @@ -369,7 +369,7 @@ class PrivateRoom(Room):
media: List[List[str]]

max_lines = 0
use_pastebin = True
use_pastebin = False
force_forward = False

commands: CommandManager
Expand Down

0 comments on commit 9c76084

Please sign in to comment.