mirror of
https://github.com/markqvist/LXMF.git
synced 2025-05-22 07:41:23 -04:00
Cleanup
This commit is contained in:
parent
d5540b927f
commit
1ef4665073
3 changed files with 4 additions and 6 deletions
|
@ -2119,7 +2119,6 @@ class LXMRouter:
|
||||||
if (not transient_id in self.propagation_entries and not transient_id in self.locally_processed_transient_ids) or allow_duplicate == True:
|
if (not transient_id in self.propagation_entries and not transient_id in self.locally_processed_transient_ids) or allow_duplicate == True:
|
||||||
received = time.time()
|
received = time.time()
|
||||||
destination_hash = lxmf_data[:LXMessage.DESTINATION_LENGTH]
|
destination_hash = lxmf_data[:LXMessage.DESTINATION_LENGTH]
|
||||||
RNS.log("GOT MESSAGE FOR "+RNS.prettyhexrep(destination_hash))
|
|
||||||
|
|
||||||
self.locally_processed_transient_ids[transient_id] = received
|
self.locally_processed_transient_ids[transient_id] = received
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
qrcode==7.4.2
|
qrcode>=7.4.2
|
||||||
rns==0.7.8
|
rns>=0.9.1
|
||||||
setuptools==70.0.0
|
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -25,6 +25,6 @@ setuptools.setup(
|
||||||
'lxmd=LXMF.Utilities.lxmd:main',
|
'lxmd=LXMF.Utilities.lxmd:main',
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
install_requires=['rns>=0.9.1'],
|
install_requires=["rns>=0.9.2"],
|
||||||
python_requires='>=3.7',
|
python_requires=">=3.7",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue