Add support for emoijs in unsplash
This commit is contained in:
parent
5ebb98ec75
commit
a6e013ede5
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ func stripUnreadable(r rune) rune {
|
||||||
if r == '\n' || r == '\t' {
|
if r == '\n' || r == '\t' {
|
||||||
return ' '
|
return ' '
|
||||||
}
|
}
|
||||||
if r < 32 || r >= 0x1f000 {
|
if r < 32 {
|
||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
return r
|
return r
|
||||||
|
|
Reference in a new issue