From: John Dong Date: Mon, 20 Aug 2007 20:05:46 +0000 (-0400) Subject: Fix error when getting a quickvote result of nonexistent ident X-Git-Url: https://projects.mako.cc/source/selectricity/commitdiff_plain/a1379415812ddd0e464aa3304b6fbb57ccf3373d Fix error when getting a quickvote result of nonexistent ident --- diff --git a/app/controllers/quickvote_controller.rb b/app/controllers/quickvote_controller.rb index 0d9eb7b..5b3acab 100644 --- a/app/controllers/quickvote_controller.rb +++ b/app/controllers/quickvote_controller.rb @@ -156,7 +156,11 @@ class QuickvoteController < ApplicationController ############################################################### def results - @election = QuickVote.ident_to_quickvote(params[:ident]) + unless @election = QuickVote.ident_to_quickvote(params[:ident]) + flash[:notice] = "Cannot find quickvote #{params[:ident]}." + redirect_to :controller => 'site' + return + end @election.results @candidates = {} @election.candidates.each {|c| @candidates[c.id] = c}