mirror of
https://github.com/pimalaya/himalaya.git
synced 2026-06-17 13:17:55 +08:00
remove \t from subjects (#141)
This commit is contained in:
+1
-1
@@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
### Fixed
|
||||
|
||||
- Table with subject containing `\r` or `\n`[#141]
|
||||
- Table with subject containing `\r`, `\n` or `\t` [#141]
|
||||
- Overflow panic when shrink column [#138]
|
||||
- Vim plugin empty mailbox message [#136]
|
||||
|
||||
|
||||
+2
-1
@@ -44,7 +44,8 @@ impl Cell {
|
||||
styles: Vec::new(),
|
||||
value: String::from(value.as_ref())
|
||||
.replace("\r", "")
|
||||
.replace("\n", ""),
|
||||
.replace("\n", "")
|
||||
.replace("\t", ""),
|
||||
shrinkable: false,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user