diff options
Diffstat (limited to 'systems/sheet/src/index_source')
| -rw-r--r-- | systems/sheet/src/index_source/alias.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/systems/sheet/src/index_source/alias.rs b/systems/sheet/src/index_source/alias.rs index 4a8f0ad..d50c183 100644 --- a/systems/sheet/src/index_source/alias.rs +++ b/systems/sheet/src/index_source/alias.rs @@ -101,7 +101,7 @@ async fn alias_exists(aliases_dir: PathBuf, local_id: u32) -> Result<bool, IDAli Ok(remote_id != 0) } -async fn convert_to_remote(aliases_dir: PathBuf, local_id: u32) -> Result<u32, IDAliasError> { +pub async fn convert_to_remote(aliases_dir: PathBuf, local_id: u32) -> Result<u32, IDAliasError> { ensure_aliases_dir(&aliases_dir).await?; let (file_index, offset) = get_file_path_and_offset(local_id); |
