Skip to content

Commit

Permalink
1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed May 6, 2019
1 parent e2c8ab8 commit 62877fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Gifski/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.7.0</string>
<string>1.8.0</string>
<key>CFBundleVersion</key>
<string>16</string>
<string>17</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
Expand Down
2 changes: 1 addition & 1 deletion Gifski/util.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1936,7 +1936,7 @@ extension NSError {
let errorName = "\(error)".split(separator: "(").first ?? ""

return self.init(
domain: "\(App.id) - \(nsError.domain)\(errorName != nil ? "." : "")\(errorName)",
domain: "\(App.id) - \(nsError.domain)\(errorName.isEmpty ? "" : ".")\(errorName)",
code: nsError.code,
userInfo: userInfo
)
Expand Down

0 comments on commit 62877fb

Please sign in to comment.