fix: extract deobf data with global strings variable

This commit is contained in:
ThetaDev 2025-03-24 01:12:01 +01:00
parent e8acbfbbcf
commit 4ce6746be5
No known key found for this signature in database
GPG key ID: E319D3C5148D65B6
3 changed files with 206 additions and 151 deletions

View file

@ -151,6 +151,8 @@ pub enum AuthError {
}
pub(crate) mod internal {
use std::borrow::Cow;
use super::{Error, ExtractionError};
/// Error that occurred during the initialization
@ -168,7 +170,7 @@ pub(crate) mod internal {
Extraction(&'static str),
/// Unspecified error
#[error("error: {0}")]
Other(&'static str),
Other(Cow<'static, str>),
}
impl From<DeobfError> for Error {