Skip to content

Commit

Permalink
Fix for issue #10
Browse files Browse the repository at this point in the history
This fix might be a partial fix
  • Loading branch information
Francescu committed Apr 10, 2018
1 parent 1c631dd commit 73b7d85
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sources/Smile.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public func list() -> [String] {
let ranges = [
0x1F601...0x1F64F,
0x2600...0x27B0,
0x23F0...0x23FA,
0x1F680...0x1F6C0,
0x1F170...0x1F251
]
Expand All @@ -24,7 +25,7 @@ public func list() -> [String] {
}

//⌚️⌨️⭐️
let solos = [0x231A, 0x2328, 0x2B50]
let solos = [0x231A, 0x231B, 0x2328, 0x2B50]
all.append(contentsOf: solos.map({ String(Character(UnicodeScalar($0)!))}))

return all
Expand Down

0 comments on commit 73b7d85

Please sign in to comment.