fix: replace hardcoded error in lpv3 route

This commit is contained in:
Arseniy Klempner 2025-12-03 20:02:07 -08:00
parent 89f4a6dbc2
commit e8caeb1f0d
No known key found for this signature in database
GPG Key ID: 51653F18863BD24B

View File

@ -81,7 +81,7 @@ router.post(
} else {
return {
success: false,
error: "Could not publish message: no suitable peers",
error: lightPushResult.failures[0].error,
};
}
},