feat: update license type to nonprofit and add jni to plugin lists; bump dependencies for flutter_local_notifications, package_info_plus, share_plus, flutter_blue_plus_platform_interface, and llamadart

This commit is contained in:
Zach
2026-06-11 10:08:31 -07:00
parent 26fdf74d69
commit 6a31d304d3
8 changed files with 52 additions and 61 deletions
+2 -1
View File
@@ -232,8 +232,9 @@ class _RoutingSheetBodyState extends State<_RoutingSheetBody> {
case _RoutingMode.auto:
if (contact.pathLength < 0) return l10n.routing_noPathYet;
if (contact.pathLength == 0) return l10n.routing_directNoHops;
if (contact.path.isEmpty)
if (contact.path.isEmpty) {
return l10n.chat_hopsCount(contact.pathLength);
}
return PathHelper.resolvePathNames(contact.path, connector.allContacts);
}
}