We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c06aa64 commit 1cb0a99Copy full SHA for 1cb0a99
components/places/ios/Places/Places.swift
@@ -323,10 +323,10 @@ public class PlacesReadConnection {
323
* operation. (If this occurs, please let us
324
* know).
325
*/
326
- open func countBookmarksInTrees(folderGuids: [Guid]) throws -> UInt32 {
+ open func countBookmarksInTrees(folderGuids: [Guid]) throws -> Int {
327
return try queue.sync {
328
try self.checkApi()
329
- return try self.conn.bookmarksCountBookmarksInTrees(folderGuids: folderGuids)
+ return try Int(self.conn.bookmarksCountBookmarksInTrees(folderGuids: folderGuids))
330
}
331
332
0 commit comments