fix error

This commit is contained in:
邱博亞 2021-11-27 22:57:30 +08:00
parent 1a6e46982c
commit 1d8b2b04b6
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ if bundle_update_flag
puts "Checking announcement widgets"
widget_info = info["widgets"].sort_by{|h| h["filename"].to_i} rescue []
update_flag = false
last_index = widget_info[-1]["filename"].match(/\d+/)[0].to_i rescue nil
last_index = widget_info.collect{|v| v["filename"].to_s.scan(/\d+/).collect{|v1| v1.to_i}}.flatten.sort[-1] rescue nil
if !last_index.nil?
idx_regex = /^(\d+[\. \t]*)|[ \t]+$/
default_announcement_widget_info.each do |h|