lib/fb_graph/event.rb in fb_graph-1.6.3 vs lib/fb_graph/event.rb in fb_graph-1.6.4
- old
+ new
@@ -29,12 +29,12 @@
end
end
if (end_time = attributes[:end_time])
@end_time = case end_time
when String
- Time.parse(end_time).utc
+ Time.parse(end_time)
when Fixnum
- Time.at(end_time).utc
+ Time.at(end_time)
end
end
if attributes[:venue]
@venue = Venue.new(attributes[:venue])
end
\ No newline at end of file