|
|
@@ -49,11 +49,14 @@ class LiveBroad < ActiveRecord::Base
|
|
|
if item.length<=0
|
|
|
next
|
|
|
end
|
|
|
- if i==0
|
|
|
- str=RANK_HASH[item.to_s]
|
|
|
- else
|
|
|
- str=str+","+RANK_HASH[item.to_s]
|
|
|
+ if !RANK_HASH[item.to_s].blank?
|
|
|
+ if i==0
|
|
|
+ str=RANK_HASH[item.to_s]
|
|
|
+ else
|
|
|
+ str=str+","+RANK_HASH[item.to_s]
|
|
|
+ end
|
|
|
end
|
|
|
+
|
|
|
i=i+1
|
|
|
end
|
|
|
else
|