mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-26 18:21:00 +00:00
Fix String interpolation warnings (#1172)
This commit is contained in:
parent
310a5fba99
commit
1989ee1b0b
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ public class ReblogCache {
|
||||||
// just a quick check to makes sure that this wasn't boosted by the current
|
// just a quick check to makes sure that this wasn't boosted by the current
|
||||||
// user. Hiding that would be confusing
|
// user. Hiding that would be confusing
|
||||||
// But assuming it isn't then we can suppress this boost
|
// 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)
|
statuses.remove(at: i)
|
||||||
// assert(statuses.count == (ct-1))
|
// assert(statuses.count == (ct-1))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue