We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c044ba commit a68e19bCopy full SHA for a68e19b
apps/labrinth/src/models/v2/notifications.rs
@@ -94,6 +94,7 @@ pub enum LegacyNotificationBody {
94
},
95
PaymentFailed {
96
amount: String,
97
+ service: String,
98
99
Unknown,
100
}
@@ -246,8 +247,8 @@ impl LegacyNotification {
246
247
new_email,
248
to_email,
249
- NotificationBody::PaymentFailed { amount } => {
250
- LegacyNotificationBody::PaymentFailed { amount }
+ NotificationBody::PaymentFailed { amount, service } => {
251
+ LegacyNotificationBody::PaymentFailed { amount, service }
252
253
NotificationBody::Unknown => LegacyNotificationBody::Unknown,
254
};
0 commit comments