mirror of
https://github.com/samsonjs/kwikemon.git
synced 2026-03-25 09:05:51 +00:00
bug fixes
This commit is contained in:
parent
d59674b60f
commit
5e978e94da
2 changed files with 2 additions and 2 deletions
|
|
@ -85,7 +85,7 @@ module Kwikemon
|
|||
text: text,
|
||||
ttl: ttl || DefaultTTL,
|
||||
created: created || Time.now.to_i,
|
||||
modified: modified || Time.now_to_i
|
||||
modified: modified || Time.now.to_i
|
||||
}
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
// Copyright 2013 Sami Samhuri
|
||||
|
||||
module.exports = JSON.parse(require('fs').readFileSync('./package.json')).version;
|
||||
module.exports = JSON.parse(require('fs').readFileSync(__dirname + '/package.json')).version;
|
||||
|
|
|
|||
Loading…
Reference in a new issue