Skip to content

Commit

Permalink
Fix sleep function
Browse files Browse the repository at this point in the history
  • Loading branch information
stoneo committed Apr 29, 2017
1 parent 463b245 commit 6b8ae14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rdcli",
"version": "1.4.1",
"version": "1.4.2",
"description": "A simple CLI tool to unrestrict links with real-debrid.com",
"homepage": "https://github.com/stoneo/rdcli",
"repository": {
Expand All @@ -26,7 +26,7 @@
"chai": "^3.5.0",
"chalk": "^1.1.3",
"co-prompt": "^1.0.0",
"co-sleep": "0.0.1",
"sleep-promise": "^2.0.0",
"commander": "^2.9.0",
"config": "git+https://github.com/stoneo/node-config",
"debug": "^2.6.3",
Expand Down
2 changes: 1 addition & 1 deletion src/torrent.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import config from 'config';
import debug from 'debug';
import * as fs from 'async-file';
import ora from 'ora';
import sleep from 'co-sleep';
import sleep from 'sleep-promise';
import fetch from './fetch';

const log = debug('torrent');
Expand Down

0 comments on commit 6b8ae14

Please sign in to comment.