Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7596541
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T21:56:28+00:00 2026-05-30T21:56:28+00:00

From time to time I have user.id == nil. And when this happens my

  • 0

From time to time I have user.id == nil. And when this happens my lookup fails. What is the most practical way to rescue this code? and what do you typically return when this happens?

def lookup  
  @data[user.id]["email"]
end

Say a mail method is using the returned value

email(lookup).deliver
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T21:56:29+00:00Added an answer on May 30, 2026 at 9:56 pm
    begin
      @data[user.id]["email"]
    rescue Exception
      nil
    end
    

    or you might be able to do

    @date[user.try(:id)]["email"]
    

    which will just return nil if user is nil and you call id on it.

    The real problem here is that you’ve got a code smell. Whatever class owns the lookup method knows too much about the implementation details of @data. I can’t recommend a fix without more code, but I’d suggest writing a method/class that only knows how to pull the email out of data. Something like:

    @data.get_email_for_user
    

    That way this class wouldn’t have to worry about whether or not user is nil. It only has to worry about returning the email.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following list of time zones that a user can choose from,
A lot of time I have to code from home. Normally I just remote
We have just migrated from solr3.5 to solr3.6, for all this time we have
I also have a week number, extracted from another time object like this other_time.strftime('%W').to_i
I have this code getting back a password from the keychain for a given
I have a datetime called dispatched_time which I am subtracting from Time.now which results
I have a DevExpress VCL ribbon in my Delphi app From time to time
I have a wx.Frame . I need to change the content from time to
We have a little annoying problem with our delphi 2007 IDE, from time to
I have a WCF client that I'm having problems with. From time to time

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.