mirror of https://github.com/calzoneman/sync.git
Fix titles and error messages
This commit is contained in:
parent
ad13896739
commit
c9025fbb44
|
@ -710,9 +710,11 @@ var Getters = {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
var data = {};
|
var data = {};
|
||||||
res.split("&").forEach(function (urlparam) {
|
res.split("&").forEach(function (urlparam) {
|
||||||
var pair = urlparam.split("=").map(decodeURIComponent);
|
var pair = urlparam.split("=").map(decodeURIComponent).map(
|
||||||
|
function (s) { return s.replace(/\+/g, ' '); });
|
||||||
data[pair[0]] = pair[1];
|
data[pair[0]] = pair[1];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -721,8 +723,12 @@ var Getters = {
|
||||||
if (reason.indexOf("Unable to play this video at this time.") === 0) {
|
if (reason.indexOf("Unable to play this video at this time.") === 0) {
|
||||||
reason = "There is currently a bug with Google Drive which prevents playback " +
|
reason = "There is currently a bug with Google Drive which prevents playback " +
|
||||||
"of videos 1 hour long or longer.";
|
"of videos 1 hour long or longer.";
|
||||||
|
} else if (reason.indexOf(
|
||||||
|
"You must be signed in to access this video") >= 0) {
|
||||||
|
reason = "This video is not shared properly";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return callback(reason);
|
return callback(reason);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue