Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
HarryET committed Aug 29, 2023
1 parent 6079231 commit 0beaa5c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/providers/fcm.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use tracing::error;
use {
crate::{
blob::DecryptedPayloadBlob,
Expand All @@ -9,7 +8,7 @@ use {
async_trait::async_trait,
fcm::{ErrorReason, FcmError, FcmResponse, MessageBuilder, NotificationBuilder},
std::fmt::{Debug, Formatter},
tracing::span,
tracing::{error, span},
};

pub struct FcmProvider {
Expand Down Expand Up @@ -72,7 +71,7 @@ impl PushProvider for FcmProvider {
e => {
error!("FcmResponse Error on line 82, {:?}", e);
Err(Error::FcmResponse(e))
},
}
}
} else {
// Note: No Errors in the response, this request was good
Expand All @@ -84,7 +83,7 @@ impl PushProvider for FcmProvider {
e => {
error!("Fcm Error on line 82, {:?}", e);
Err(Error::Fcm(e))
},
}
},
}
}
Expand Down

0 comments on commit 0beaa5c

Please sign in to comment.