I switched to the active record-based session store and the problem resolved itself.
- Uncomment
config.action_controller.session_store = :active_record_store
fromapp/config/environment.rb
rake db:sessions:create
rake db:migrate
That corrected it on my local instance.
When I pushed it to heroku, I forgot to do a heroku rake db:migrate
and got a 500 error, but once I migrated there too, everything seems fine.
Thanks for the quick solution!