Passing '' to fromPartiion should return default partition
This commit is contained in:
parent
56c1f04a51
commit
10cad5d9ec
1 changed files with 2 additions and 1 deletions
|
@ -6,6 +6,7 @@ PERSIST_PERFIX = 'persist:'
|
|||
|
||||
# Returns the Session from |partition| string.
|
||||
exports.fromPartition = (partition='') ->
|
||||
return exports.defaultSession if partition is ''
|
||||
if partition.startsWith PERSIST_PERFIX
|
||||
bindings.fromPartition partition.substr(PERSIST_PERFIX.length), false
|
||||
else
|
||||
|
@ -14,7 +15,7 @@ exports.fromPartition = (partition='') ->
|
|||
# Returns the default session.
|
||||
Object.defineProperty exports, 'defaultSession',
|
||||
enumerable: true
|
||||
get: -> exports.fromPartition 'persist:'
|
||||
get: -> bindings.fromPartition '', false
|
||||
|
||||
wrapSession = (session) ->
|
||||
# session is an EventEmitter.
|
||||
|
|
Loading…
Reference in a new issue