fix: Fixed that account_id returns normal value (#1695)

This commit is contained in:
houseme
2026-02-02 20:15:54 +08:00
committed by GitHub
parent ec4458f846
commit d1a70176a2

View File

@@ -260,8 +260,8 @@ impl Operation for ListNotificationTargets {
_ => "offline",
};
NotificationEndpoint {
account_id: target.id().to_string(),
service: target.name().to_string(),
account_id: target.id().id.clone(),
service: target.id().name.to_string(),
status: status.to_string(),
}
});