From fc7501c4fe34c7855d3ab1ccd70303af6ed99aca Mon Sep 17 00:00:00 2001 From: Ricky Barrette Date: Sun, 20 Feb 2022 14:57:21 -0500 Subject: [PATCH] address not a --- app/controllers/customers_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/customers_controller.rb b/app/controllers/customers_controller.rb index 6950ccc..bac0fb9 100644 --- a/app/controllers/customers_controller.rb +++ b/app/controllers/customers_controller.rb @@ -194,7 +194,7 @@ class CustomersController < ApplicationController # format a quickbooks address to a human readable string def address_to_s (address) return if address.nil? - string = a.line1 + string = address.line1 string << "\n" + address.line2 if address.line2 string << "\n" + address.line3 if address.line3 string << "\n" + address.line4 if address.line4