From f63a2422561fac9e50f86b310dede0e24ec81051 Mon Sep 17 00:00:00 2001 From: Devin Howard Date: Mon, 26 Oct 2015 12:39:40 +0800 Subject: [PATCH] whoops again --- app/models/metacode.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/metacode.rb b/app/models/metacode.rb index a545a428..2b23d694 100644 --- a/app/models/metacode.rb +++ b/app/models/metacode.rb @@ -21,7 +21,7 @@ class Metacode < ActiveRecord::Base #output json with asset_paths merged in def as_json(options) json = super(options.merge!(methods: :asset_path_icon)) - json["icon"] = json["asset_path_icon"] if json["icon"].start_with?('http') + json["icon"] = json["asset_path_icon"] unless json["icon"].start_with?('http') json.except("asset_path_icon") end end