You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On an active connection, the number of unread emails can go from 1 to 0, but not from 0 to 1.
# example : the number of unread emails is at 0gmail=Gmail.new(...)puts"unread : #{gmail.inbox.count(:unread)}"# puts 0# send a test emailputs"unread : #{gmail.inbox.count(:unread)}"# still puts 0gmail=Gmail.new(...)puts"unread : #{gmail.inbox.count(:unread)}"# puts 1# read the emailputs"unread : #{gmail.inbox.count(:unread)}"# puts 0
The text was updated successfully, but these errors were encountered:
On an active connection, the number of unread emails can go from 1 to 0, but not from 0 to 1.
The text was updated successfully, but these errors were encountered: