mirror of https://github.com/calzoneman/sync.git
Fix vimeo
This commit is contained in:
parent
f7932166b2
commit
2558a87e96
|
@ -729,7 +729,7 @@ function VimeoIsADoucheCopter(id, cb) {
|
||||||
};
|
};
|
||||||
|
|
||||||
var parse = function (data) {
|
var parse = function (data) {
|
||||||
var i = data.indexOf("a={");
|
var i = data.indexOf("b={");
|
||||||
var j = data.indexOf("};", i);
|
var j = data.indexOf("};", i);
|
||||||
var json = data.substring(i+2, j+1);
|
var json = data.substring(i+2, j+1);
|
||||||
try {
|
try {
|
||||||
|
@ -761,6 +761,8 @@ function VimeoIsADoucheCopter(id, cb) {
|
||||||
} else if (data.indexOf("This video does not exist.") !== -1) {
|
} else if (data.indexOf("This video does not exist.") !== -1) {
|
||||||
cb({});
|
cb({});
|
||||||
return;
|
return;
|
||||||
|
} else if (data.indexOf("Because of its privacy settings, this video cannot be played here.") !== -1) {
|
||||||
|
cb({});
|
||||||
}
|
}
|
||||||
Logger.errlog.log("Vimeo workaround error: ");
|
Logger.errlog.log("Vimeo workaround error: ");
|
||||||
Logger.errlog.log(e);
|
Logger.errlog.log(e);
|
||||||
|
|
Loading…
Reference in New Issue