Skip to content

Commit 72ec8d9

Browse files
committed
fix linter warnings
1 parent c573f65 commit 72ec8d9

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

app/helpers/user_list_upload/invitation_attempts_helper.rb

+4-1
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,11 @@ def invitation_format_checked?(format, user_list_upload_id)
6060
end
6161

6262
def selected_invitation_formats(user_list_upload_id)
63-
cookie_data = JSON.parse(cookies["user_list_uploads"] || "{}") rescue {}
63+
cookie_data = JSON.parse(cookies["user_list_uploads"] || "{}")
6464
formats = cookie_data.dig(user_list_upload_id.to_s, "selected_invitation_formats")
6565
formats.is_a?(Array) ? formats : %w[sms email]
66+
rescue JSON::ParserError
67+
Sentry.capture_exception(JSON::ParserError, extra: { cookies: cookies["user_list_uploads"] })
68+
%w[sms email]
6669
end
6770
end

app/helpers/user_list_upload/user_list_upload_helper.rb

+4-1
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,11 @@ def show_row_attribute?(attribute_name, user_list_upload)
151151
end
152152

153153
def checkbox_to_select_all_checked?(attribute_name, user_list_upload_id)
154-
cookie_data = JSON.parse(cookies["user_list_uploads"] || "{}") rescue {}
154+
cookie_data = JSON.parse(cookies["user_list_uploads"] || "{}")
155155
cookie_data.dig(user_list_upload_id.to_s, "checkbox_all", attribute_name.to_s) != false
156+
rescue JSON::ParserError
157+
Sentry.capture_exception(JSON::ParserError, extra: { cookies: cookies["user_list_uploads"] })
158+
false
156159
end
157160
end
158161
# rubocop:enable Metrics/ModuleLength

0 commit comments

Comments
 (0)