diff --git a/meshview/templates/chat_packet.html b/meshview/templates/chat_packet.html deleted file mode 100644 index 3ae0c2f..0000000 --- a/meshview/templates/chat_packet.html +++ /dev/null @@ -1,6 +0,0 @@ -
- {{packet.import_time.strftime('%-I:%M:%S %p - %m-%d-%Y')}} - ✉️ {{packet.from_node.channel}} - {{packet.from_node.long_name or (packet.from_node_id | node_id_to_hex) }} - {{packet.payload}} -
\ No newline at end of file diff --git a/meshview/templates/net_packet.html b/meshview/templates/net_packet.html deleted file mode 100644 index 3ae0c2f..0000000 --- a/meshview/templates/net_packet.html +++ /dev/null @@ -1,6 +0,0 @@ -
- {{packet.import_time.strftime('%-I:%M:%S %p - %m-%d-%Y')}} - ✉️ {{packet.from_node.channel}} - {{packet.from_node.long_name or (packet.from_node_id | node_id_to_hex) }} - {{packet.payload}} -
\ No newline at end of file diff --git a/meshview/web.py b/meshview/web.py index b76a895..e88d54b 100644 --- a/meshview/web.py +++ b/meshview/web.py @@ -409,7 +409,7 @@ async def firehose_updates(request): packets = await store.get_packets( portnum=portnum, - limit=20, + limit=10, ) ui_packets = [Packet.from_model(p) for p in packets]