File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -239,12 +239,12 @@ impl LDNApplication {
239
239
}
240
240
241
241
pub async fn all_applications ( ) -> Result < Vec < ( ApplicationFile , String , String ) > , Vec < LDNError > > {
242
- let allocators = database:: get_allocators ( ) . await . map_err ( |_| LDNError :: new ( "Failed to get allocators from the database" ) ) ?;
242
+ let allocators = database:: get_allocators ( ) . await . map_err ( |_| LDNError :: New ( "Failed to get allocators from the database" ) ) ?;
243
243
let mut all_apps: Vec < ( ApplicationFile , String , String ) > = Vec :: new ( ) ;
244
244
let mut errors: Vec < LDNError > = Vec :: new ( ) ;
245
245
246
246
for allocator in allocators {
247
- match active ( allocator. owner . clone ( ) , allocator. repo . clone ( ) , None ) . await {
247
+ match Self :: active ( allocator. owner . clone ( ) , allocator. repo . clone ( ) , None ) . await {
248
248
Ok ( apps) => {
249
249
for app in apps {
250
250
all_apps. push ( ( app, allocator. repo . clone ( ) , allocator. owner . clone ( ) ) ) ;
@@ -256,7 +256,7 @@ impl LDNApplication {
256
256
} ,
257
257
}
258
258
259
- match merged ( allocator. owner . clone ( ) , allocator. repo . clone ( ) ) . await {
259
+ match Self :: merged ( allocator. owner . clone ( ) , allocator. repo . clone ( ) ) . await {
260
260
Ok ( merged_apps) => {
261
261
for app in merged_apps {
262
262
all_apps. push ( ( app. 1 , allocator. repo . clone ( ) , allocator. owner . clone ( ) ) ) ;
You can’t perform that action at this time.
0 commit comments