mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
Fossil HR: fixed last notification widget
This commit is contained in:
+8
-3
@@ -969,17 +969,22 @@ public class FossilHRWatchAdapter extends FossilWatchAdapter {
|
||||
}
|
||||
}
|
||||
|
||||
boolean packageFound = false;
|
||||
|
||||
// Send notification to watch
|
||||
try {
|
||||
for (NotificationHRConfiguration configuration : this.notificationConfigurations) {
|
||||
if (configuration.getPackageName().equals(sourceAppId)) {
|
||||
LOG.info("Package found in notificationConfigurations, using custom icon: " + sourceAppId);
|
||||
queueWrite(new PlayTextNotificationRequest(sourceAppId, senderOrTitle, notificationSpec.body, notificationSpec.getId(), this));
|
||||
return true;
|
||||
packageFound = true;
|
||||
}
|
||||
}
|
||||
LOG.info("Package not found in notificationConfigurations, using generic icon: " + sourceAppId);
|
||||
queueWrite(new PlayTextNotificationRequest("generic", senderOrTitle, notificationSpec.body, notificationSpec.getId(), this));
|
||||
|
||||
if(!packageFound) {
|
||||
LOG.info("Package not found in notificationConfigurations, using generic icon: " + sourceAppId);
|
||||
queueWrite(new PlayTextNotificationRequest("generic", senderOrTitle, notificationSpec.body, notificationSpec.getId(), this));
|
||||
}
|
||||
} catch (Exception e) {
|
||||
LOG.error("Error while forwarding notification", e);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user