Skip to content
This repository has been archived by the owner on Jun 16, 2022. It is now read-only.

Commit

Permalink
fixing error message on size limits
Browse files Browse the repository at this point in the history
  • Loading branch information
Milton Moura committed Oct 22, 2016
1 parent a65ee53 commit f708488
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CloudVisionKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = "CloudVisionKit"
s.version = "0.3.1"
s.version = "0.3.2"
s.summary = "A Swift interface for Google's Cloud Vision API."

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Pod/Classes/CloudVisionAPI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ final public class CloudVision {
} catch GCVApiError.requestSizeExceeded {
NSLog("GCV Usage Limit Exceeded: Request Size > 8 MB")
} catch GCVApiError.imageDataSizeExceeded {
NSLog("GCV Usage Limit Exceeded: Image size > 2 MB")
NSLog("GCV Usage Limit Exceeded: Image size > 4 MB")
} catch GCVApiError.imagesPerRequestExceeded {
NSLog("GCV Usage Limit Exceeded: Max Images Per Request > 16")
} catch {
Expand Down

0 comments on commit f708488

Please sign in to comment.