Skip to content

Commit

Permalink
Fix String interpolation warnings (#1172)
Browse files Browse the repository at this point in the history
  • Loading branch information
kitwtnb authored Mar 5, 2023
1 parent 310a5fb commit 1989ee1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Packages/Status/Sources/Status/List/ReblogCache.swift
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public class ReblogCache {
// just a quick check to makes sure that this wasn't boosted by the current
// user. Hiding that would be confusing
// But assuming it isn't then we can suppress this boost
print("suppressing: \(reblog.id)/ \(reblog.account.displayName) by \(status.account.displayName)")
print("suppressing: \(reblog.id)/ \(String(describing: reblog.account.displayName)) by \(String(describing: status.account.displayName))")
statuses.remove(at: i)
// assert(statuses.count == (ct-1))
}
Expand Down

0 comments on commit 1989ee1

Please sign in to comment.