Skip to content

Commit

Permalink
Fix this error
Browse files Browse the repository at this point in the history
  • Loading branch information
dzania committed Oct 10, 2023
1 parent 7ba11e7 commit 94cf210
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src-tauri/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ pub enum Error {
Database(#[from] sqlx::Error),
#[error("Migrate error: {0}")]
Migration(#[from] sqlx::migrate::MigrateError),
#[error("Wireguard error")]
#[error("Wireguard error: {0}")]
WireguardError(#[from] WireguardInterfaceError),
#[error("WireGuard key error")]
#[error("WireGuard key error: {0}")]
KeyDecode(#[from] base64::DecodeError),
#[error("IP address/mask error")]
#[error("IP address/mask error: {0}")]
IpAddrMask(#[from] IpAddrParseError),
#[error("IP address/mask error")]
#[error("IP address parse error: {0}")]
AddrParse(#[from] AddrParseError),
#[error("Local Ip Error")]
#[error("Local Ip Error: {0}")]
LocalIpError(#[from] LocalIpError),
#[error("Internal error")]
InternalError,
Expand Down

0 comments on commit 94cf210

Please sign in to comment.