Skip to content

Commit c947e69

Browse files
authored
Merge pull request #138 from filecoin-project/feat/cache-application-db
fix load error ap
2 parents 72672f3 + 130b626 commit c947e69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fplus-lib/src/core/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ impl LDNApplication {
298298
let app_file = match ApplicationFile::from_str(&app.application.unwrap()) {
299299
Ok(app) => app,
300300
Err(e) => {
301-
return Err(vec![LDNError::Load(format!("Failed to parse application file from DB /// {}", e))]);
301+
continue;
302302
}
303303
};
304304
all_apps.push((app_file, app.owner, app.repo));

0 commit comments

Comments
 (0)