nexmo-community / rails-video-watch-party-app

Create a video watch party in Rails with the Vonage Video API
MIT License
9 stars 8 forks source link

check first if any sessions are in the db #3

Closed hummusonrails closed 4 years ago

hummusonrails commented 4 years ago

Glitch discovered if the app is running for the first time, the last_session = Session.last will raise an exception since the database is empty. This adds a conditional check to wrap it in of if Session.any? and if false it will create a new session.