sirupsen / airrecord

Ruby wrapper for Airtable, your personal database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Airrecord::Table instance is broken after `.save`

okliv opened this issue · comments

commented
> o.class.superclass #=> Airrecord::Table
> o['smth'] #=> "abc"
> o['smth'] = 'def'
> o.save
> o['smth'] #=>  nil :-(
commented

oh... i have 0.2.4 version and found that i have here

self.fields = parsed_response

but latest release has

self.fields = parsed_response['fields']

like it has to be

closing