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

A lot of time I have to code from home. Normally I just remote
I have a data.frame from this code: my_df = data.frame(read_time = c(2010-02-15, 2010-02-15, 2010-02-16,
I have this code getting back a password from the keychain for a given
I have C# winforms application that needs to start an external exe from time
I want to copy files that have timestamps from the time the script begins
I have some trouble achieving adequate real-time performance from my application and wondering if
Is it possible to have JavaScript compute a timestamp returned from PHP's time() function
I have from the backend a time on the format 00:12:54 and I display
I have a branch which I created from the trunk some time ago. Since
Coming from C/C++ a long time ago I still have a habit of ensuring

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.