mirror of
https://github.com/YGGverse/rssto.git
synced 2026-03-31 17:15:29 +00:00
set default capacity
This commit is contained in:
parent
e86b241ee6
commit
2463446fcd
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ fn index(
|
||||||
"index",
|
"index",
|
||||||
context! {
|
context! {
|
||||||
title: {
|
title: {
|
||||||
let mut t = String::new();
|
let mut t = String::with_capacity(9);
|
||||||
if let Some(q) = search && !q.is_empty() {
|
if let Some(q) = search && !q.is_empty() {
|
||||||
t.push_str(q);
|
t.push_str(q);
|
||||||
t.push_str(S);
|
t.push_str(S);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue