Compare commits
4 Commits
v2.26.1
...
fix-propag
| Author | SHA1 | Date | |
|---|---|---|---|
|
c24bef2a35
|
|||
|
|
011876bec5 | ||
|
|
e3dae8aea9 | ||
|
|
c2ee9be39a |
@@ -3248,9 +3248,9 @@ class ReticulumMeshChat:
|
|||||||
app_data_bytes = base64.b64decode(app_data_base64)
|
app_data_bytes = base64.b64decode(app_data_base64)
|
||||||
data = msgpack.unpackb(app_data_bytes)
|
data = msgpack.unpackb(app_data_bytes)
|
||||||
return {
|
return {
|
||||||
"enabled": bool(data[0]),
|
"enabled": bool(data[2]),
|
||||||
"timebase": int(data[1]),
|
"timebase": int(data[1]),
|
||||||
"per_transfer_limit": int(data[2]),
|
"per_transfer_limit": int(data[3]),
|
||||||
}
|
}
|
||||||
except:
|
except:
|
||||||
return None
|
return None
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "reticulum-meshchat",
|
"name": "reticulum-meshchat",
|
||||||
"version": "2.2.1",
|
"version": "2.3.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "reticulum-meshchat",
|
"name": "reticulum-meshchat",
|
||||||
"version": "2.2.1",
|
"version": "2.3.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mdi/js": "^7.4.47",
|
"@mdi/js": "^7.4.47",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "reticulum-meshchat",
|
"name": "reticulum-meshchat",
|
||||||
"version": "2.2.1",
|
"version": "2.3.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "electron/main.js",
|
"main": "electron/main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
aiohttp>=3.12.14
|
aiohttp>=3.12.14
|
||||||
cx_freeze>=7.0.0
|
cx_freeze>=7.0.0
|
||||||
lxmf>=0.8.0
|
lxmf>=0.9.2
|
||||||
peewee>=3.18.1
|
peewee>=3.18.1
|
||||||
rns>=1.0.0
|
rns>=1.0.2
|
||||||
websockets>=14.2
|
websockets>=14.2
|
||||||
|
|||||||
Reference in New Issue
Block a user