Skip to content

Commit 1cb0a99

Browse files
MattLichtensteinlinabutler
authored andcommitted
Int instead of UInt32
1 parent c06aa64 commit 1cb0a99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/places/ios/Places/Places.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,10 +323,10 @@ public class PlacesReadConnection {
323323
* operation. (If this occurs, please let us
324324
* know).
325325
*/
326-
open func countBookmarksInTrees(folderGuids: [Guid]) throws -> UInt32 {
326+
open func countBookmarksInTrees(folderGuids: [Guid]) throws -> Int {
327327
return try queue.sync {
328328
try self.checkApi()
329-
return try self.conn.bookmarksCountBookmarksInTrees(folderGuids: folderGuids)
329+
return try Int(self.conn.bookmarksCountBookmarksInTrees(folderGuids: folderGuids))
330330
}
331331
}
332332

0 commit comments

Comments
 (0)