diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -497,7 +497,7 @@ impl Router { }, match response_status { 20 => format!("{}{}\n{}", header, content, footer), - 21 => format!(" {}", content), + 21 => content.to_string(), _ => "".to_string(), } ) |