Compare commits

..

2 commits

2 changed files with 10 additions and 7 deletions

View file

@ -217,8 +217,8 @@ mod tests {
#[test] #[test]
fn test_client_creation() { fn test_client_creation() {
let client = BotServerClient::new(Some("http://localhost:8080".to_string())); let client = BotServerClient::new(Some("http://localhost:9000".to_string()));
assert_eq!(client.base_url(), "http://localhost:8080"); assert_eq!(client.base_url(), "http://localhost:9000");
} }
#[test] #[test]

View file

@ -1,6 +1,8 @@
use crate::error::{BotError, BotResult}; use crate::error::{BotError, BotResult};
use std::collections::HashMap; use std::collections::HashMap;
#[cfg(not(feature = "i18n"))]
use std::fs; use std::fs;
#[cfg(not(feature = "i18n"))]
use std::path::Path; use std::path::Path;
#[cfg(feature = "i18n")] #[cfg(feature = "i18n")]
@ -89,6 +91,7 @@ struct LocaleBundle {
} }
impl LocaleBundle { impl LocaleBundle {
#[cfg(not(feature = "i18n"))]
fn load(locale_dir: &Path) -> BotResult<Self> { fn load(locale_dir: &Path) -> BotResult<Self> {
let dir_name = locale_dir let dir_name = locale_dir
.file_name() .file_name()
@ -172,24 +175,24 @@ pub struct I18nBundle {
} }
impl I18nBundle { impl I18nBundle {
pub fn load(base_path: &str) -> BotResult<Self> { pub fn load(_base_path: &str) -> BotResult<Self> {
// When i18n feature is enabled, locales are ALWAYS embedded via rust-embed // When i18n feature is enabled, locales are ALWAYS embedded via rust-embed
// Filesystem loading is deprecated - use embedded assets only // Filesystem loading is deprecated - use embedded assets only
#[cfg(feature = "i18n")] #[cfg(feature = "i18n")]
{ {
log::info!("Loading embedded locale translations (rust-embed)"); log::info!("Loading embedded locale translations (rust-embed)");
return Self::load_embedded(); Self::load_embedded()
} }
#[cfg(not(feature = "i18n"))] #[cfg(not(feature = "i18n"))]
{ {
let _base_path = base_path; // Suppress unused warning when i18n is enabled // let _base_path = base_path; // Suppress unused warning when i18n is enabled
let base = Path::new(base_path); let base = Path::new(_base_path);
if !base.exists() { if !base.exists() {
return Err(BotError::config(format!( return Err(BotError::config(format!(
"locales directory not found: {base_path}" "locales directory not found: {_base_path}"
))); )));
} }