diff options
Diffstat (limited to 'src/purgatory')
| -rw-r--r-- | src/purgatory/sync/context.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/purgatory/sync/context.rs b/src/purgatory/sync/context.rs index 778cdb8..33c2d12 100644 --- a/src/purgatory/sync/context.rs +++ b/src/purgatory/sync/context.rs | |||
| @@ -279,12 +279,7 @@ impl SyncContext for RealSyncContext { | |||
| 279 | } | 279 | } |
| 280 | 280 | ||
| 281 | async fn fetch_repository_data(&self, identifier: &str) -> Result<RepositoryData> { | 281 | async fn fetch_repository_data(&self, identifier: &str) -> Result<RepositoryData> { |
| 282 | crate::git::authorization::fetch_repository_data_with_purgatory( | 282 | crate::git::authorization::fetch_repository_data(&self.database, identifier).await |
| 283 | &self.database, | ||
| 284 | &self.purgatory, | ||
| 285 | identifier, | ||
| 286 | ) | ||
| 287 | .await | ||
| 288 | } | 283 | } |
| 289 | 284 | ||
| 290 | fn collect_needed_oids(&self, identifier: &str) -> HashSet<String> { | 285 | fn collect_needed_oids(&self, identifier: &str) -> HashSet<String> { |