fix error

This commit is contained in:
邱博亞 2021-11-27 23:08:08 +08:00
parent 8cd0c0774a
commit 597416e0d6
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ if bundle_update_flag
puts "Checking gallery 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_gallery_widget_info.each do |h|