Improved error handling.
This commit is contained in:
parent
713d96c5e9
commit
6eceb229eb
1 changed files with 1 additions and 0 deletions
|
@ -133,6 +133,7 @@ module Session
|
||||||
|
|
||||||
def self.touch( client_id )
|
def self.touch( client_id )
|
||||||
data = self.get(client_id)
|
data = self.get(client_id)
|
||||||
|
return if !data
|
||||||
path = @path + '/' + client_id.to_s
|
path = @path + '/' + client_id.to_s
|
||||||
data[:meta][:last_ping] = Time.new.to_i.to_s
|
data[:meta][:last_ping] = Time.new.to_i.to_s
|
||||||
File.open( path + '/session', 'wb' ) { |file|
|
File.open( path + '/session', 'wb' ) { |file|
|
||||||
|
|
Loading…
Reference in a new issue