-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filebrowser dev #184
Filebrowser dev #184
Conversation
…lient into filebrowser-dev
|
||
////////////////////////////////////////// | ||
// Prey JS FileRetrieval | ||
// (c) 2015 - Fork Ltd. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sign as 2016 - Prey, Inc.
|
||
////////////////////////////////////////// | ||
// Prey JS FileRetrieval | ||
// Sign as 2016 - Prey, Inc. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replace Sign as 2016 - Prey, Inc.
with (C) 2016 Prey, Inc.
} | ||
storage.set(NAMESPACE + id, opts); | ||
} | ||
else |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be neccesary
files = require('./files_storage'), | ||
EventEmitter = require('events').EventEmitter; | ||
|
||
var common = require('./../../common'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all require calls should be in one var group and non require calls should be in a different var group
// First group
var a = require('a'),
b = require('b');
// Second group
var something_with_a = a.foo(),
something_with_b = b.bar();
👏 Congrats on your first really-big PR! As the feature is still in beta, we can proceed with merging, BUT, take note of the following requirements for the next minor:
|
Fixes for fileretrieval including depth and maxBuffer