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