diff options
author | Patrick Simianer <p@simianer.de> | 2015-07-15 15:05:46 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2015-07-15 15:05:46 +0200 |
commit | 4009fb86bbd0b3f8e05055dbc1fd06eb68d85b33 (patch) | |
tree | da1d999af64d4e10fe7ec017ee827202f47ec371 /server.rb | |
parent | afcfd5bf59ec4f8693b43e55a02e3db8666adf82 (diff) |
show duration
Diffstat (limited to 'server.rb')
-rwxr-xr-x | server.rb | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -289,8 +289,14 @@ get '/debug' do # debug view if File.exist? fn data = JSON.parse ReadFile.read(fn).force_encoding("UTF-8") end + data2 = {} + data2 = JSON.parse ReadFile.read(DB_FILE).force_encoding("UTF-8") + if data2["durations"].size == 0 + data2["durations"] << -1 + end + - haml :debug, :locals => { :data => data, :session_key => SESSION_KEY } + haml :debug, :locals => { :data => data, :data2 => data2, :session_key => SESSION_KEY } end get '/confirm' do # client confirms received translation |