Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/80a56ddcfaf31655beb5e83d1fc904295b814c33 You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixes - FFmpeg not being stopped in safari

pull/702/head
Luke Pulverenti 12 years ago
parent 7ac2f74817
commit 80a56ddcfa

@ -1036,7 +1036,7 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout, wi
self.getScheduledTasks = function (options) {
options = options || {};
var url = self.getUrl("ScheduledTasks", options);
return self.ajax({
@ -1402,6 +1402,19 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout, wi
});
};
self.stopActiveEncodings = function () {
var url = self.getUrl("Videos/ActiveEncodings", {
deviceId: deviceId
});
return self.ajax({
type: "DELETE",
url: url
});
};
self.updateItemImageIndex = function (itemId, itemType, itemName, imageType, imageIndex, newIndex) {
if (!imageType) {

Loading…
Cancel
Save