From a1379415812ddd0e464aa3304b6fbb57ccf3373d Mon Sep 17 00:00:00 2001 From: John Dong Date: Mon, 20 Aug 2007 16:05:46 -0400 Subject: [PATCH] Fix error when getting a quickvote result of nonexistent ident --- app/controllers/quickvote_controller.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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} -- 2.30.2