diff --git a/eh2telegraph/src/collector/nhentai.rs b/eh2telegraph/src/collector/nhentai.rs index 8afe823..ed0903f 100644 --- a/eh2telegraph/src/collector/nhentai.rs +++ b/eh2telegraph/src/collector/nhentai.rs @@ -160,7 +160,7 @@ impl Collector for NHCollector { .and_then(Response::error_for_status)? .json() .await?; - let title = album.title.title(|| format!("Nhentai-{album_id}")); + let title = album.title.title(|| format!("nhentai-{album_id}")); let image_urls = album .images .pages diff --git a/eh2telegraph/src/sync.rs b/eh2telegraph/src/sync.rs index 6970cae..a621165 100644 --- a/eh2telegraph/src/sync.rs +++ b/eh2telegraph/src/sync.rs @@ -269,7 +269,10 @@ fn write_footer(content: &mut Vec, original_link: &str, next_page: Option< if let Some(page) = next_page { content.push(np!(na!(@page, nt!("Next Page")))); } - content.push(np!(nt!("Generated by eh2telegraph."))); + content.push(np!( + nt!("Generated by "), + na!(@"https://github.com/qini7-sese/eh2telegraph", nt!("eh2telegraph")) + )); content.push(np!( nt!("Original link: "), na!(@original_link, nt!(original_link))