Skip to content

Commit b2a75c9

Browse files
authored
Merge branch 'main' into custom-issue-comments-labels
2 parents 5118172 + 1f92097 commit b2a75c9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

fplus-lib/src/core/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -963,6 +963,7 @@ impl LDNApplication {
963963
return Ok(false);
964964
} else if app_state == AppState::Granted {
965965
let active_request_id = match application_file.clone().lifecycle.get_active_allocation_id() {
966+
966967
Some(id) => id,
967968
None => {
968969
log::warn!("- No active request");
@@ -991,6 +992,7 @@ impl LDNApplication {
991992
Self::issue_granted(application_file.issue_number.clone()).await?;
992993
return Ok(true);
993994
}
995+
994996
log::warn!("- Not validated!");
995997
Ok(false)
996998
} else {
@@ -1038,6 +1040,7 @@ impl LDNApplication {
10381040
Self::issue_start_sign_dc(application_file.issue_number.clone()).await?;
10391041
Self::issue_datacap_request_signature(application_file.clone(), "proposed".to_string()).await?;
10401042
Self::update_issue_labels(application_file.issue_number.clone(), &[AppState::StartSignDatacap.as_str()]).await?;
1043+
10411044
log::info!("- Validated!");
10421045
return Ok(true);
10431046
}
@@ -1164,6 +1167,7 @@ impl LDNApplication {
11641167
.0
11651168
.iter()
11661169
.find(|obj| Some(&obj.id) == application_file.lifecycle.active_request.clone().as_ref());
1170+
11671171
let gh = GithubWrapper::new();
11681172

11691173
let issue_number = application_file.issue_number.clone();

0 commit comments

Comments
 (0)