fix download path settings

This commit is contained in:
wgh19
2024-05-15 20:05:48 +08:00
parent 93c9d14fe2
commit 702fbf42b8
3 changed files with 17 additions and 5 deletions

View File

@@ -137,6 +137,11 @@ class Tag {
final String? translatedName;
const Tag(this.name, this.translatedName);
@override
String toString() {
return "$name${translatedName == null ? "" : "($translatedName)"}";
}
}
class IllustImage {