1
This commit is contained in:
@@ -452,8 +452,12 @@ fn compile_match3d_draft_tx(
|
||||
.unwrap_or_else(|| default_tags(&config.theme_text));
|
||||
let game_name =
|
||||
clean_optional(&input.game_name).unwrap_or_else(|| format!("{}抓大鹅", config.theme_text));
|
||||
let summary_text = clean_optional(&input.summary_text)
|
||||
.unwrap_or_else(|| format!("{}主题的经典消除玩法。", config.theme_text));
|
||||
let summary_text = input
|
||||
.summary_text
|
||||
.as_deref()
|
||||
.map(str::trim)
|
||||
.unwrap_or_default()
|
||||
.to_string();
|
||||
let draft = Match3DDraftSnapshot {
|
||||
profile_id: input.profile_id.clone(),
|
||||
game_name: game_name.clone(),
|
||||
|
||||
Reference in New Issue
Block a user