Skip to content

Commit de01b4d

Browse files
authored
Tests for all bill action possibilities, Fix file 404 (#478)
1 parent e42246a commit de01b4d

File tree

6 files changed

+452
-88
lines changed

6 files changed

+452
-88
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# 0.3.5
22

3-
* Add in-depth tests for bill validation
43
* Properly propagate and log errors when getting a file (e.g. an avatar)
4+
* Several fixes to recourse bill action validation
5+
* Add in-depth tests for bill validation
6+
* Fix not checking contact for company files
57

68
# 0.3.4
79

crates/bcr-ebill-api/src/service/contact_service.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ impl ContactServiceApi for ContactService {
157157
}
158158

159159
async fn get_contact(&self, node_id: &str) -> Result<Contact> {
160+
debug!("getting contact for {node_id}");
160161
let res = self.store.get(node_id).await?;
161162
match res {
162163
None => Err(super::Error::NotFound),

0 commit comments

Comments
 (0)