Add lbry.getFileStatus()
This commit is contained in:
parent
b9d30cf85e
commit
31bf22cbf1
1 changed files with 4 additions and 0 deletions
|
@ -99,6 +99,10 @@ lbry.getStream = function(name, callback) {
|
|||
lbry.call('get', { 'name': name }, callback);
|
||||
};
|
||||
|
||||
lbry.getFileStatus = function(name, callback) {
|
||||
lbry.call('get_lbry_file', { 'name': name }, callback);
|
||||
}
|
||||
|
||||
lbry.getVersionInfo = function(callback) {
|
||||
lbry.call('version', {}, callback);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue