mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-23 06:05:24 +00:00
Drop SnapshotError in favor of anyhow::Error
This commit is contained in:
@@ -22,7 +22,7 @@ use crate::{
|
||||
apply_patch_set, compute_patch_set, AppliedPatchSet, InstanceContext,
|
||||
InstancePropertiesWithMeta, PatchSet, RojoTree,
|
||||
},
|
||||
snapshot_middleware::{snapshot_from_vfs, SnapshotError},
|
||||
snapshot_middleware::snapshot_from_vfs,
|
||||
};
|
||||
|
||||
/// Contains all of the state for a Rojo serve session.
|
||||
@@ -234,8 +234,8 @@ pub enum ServeSessionError {
|
||||
},
|
||||
|
||||
#[error(transparent)]
|
||||
Snapshot {
|
||||
Other {
|
||||
#[from]
|
||||
source: SnapshotError,
|
||||
source: anyhow::Error,
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user