You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wolftrans-0.2.0/lib/wolftrans/context.rb:178:in `from_string': invalid path specified for DB context line (line 5) (RuntimeError)
This problem crops up with many games because some Type names in User database contain "/" character. I fixed it for myself with a small dirty edit in context.rb:178
if path.size != 4
path = path.join("/")
path = path.split(/\/(?=\[\d+\])/)
if path.size != 4
raise "invalid path specified for DB context line"
end
end
Maybe it's worth loking into!?
The text was updated successfully, but these errors were encountered:
This problem crops up with many games because some Type names in User database contain "/" character. I fixed it for myself with a small dirty edit in context.rb:178
Maybe it's worth loking into!?
The text was updated successfully, but these errors were encountered: