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

fix bug causing wrong time to be displayed for next request

pull/2494/head
Kenton Royal 7 years ago
parent 243dc99633
commit 69cf31f66b

@ -516,7 +516,7 @@ namespace Ombi.Core.Engine
HasLimit = true,
Limit = limit,
Remaining = count,
NextRequest = oldestRequestedAt.AddDays(7),
NextRequest = DateTime.SpecifyKind(oldestRequestedAt.AddDays(7), DateTimeKind.Utc),
};
}
}

@ -652,7 +652,7 @@ namespace Ombi.Core.Engine
HasLimit = true,
Limit = limit,
Remaining = count,
NextRequest = oldestRequestedAt.AddDays(7),
NextRequest = DateTime.SpecifyKind(oldestRequestedAt.AddDays(7), DateTimeKind.Utc),
};
}
}

Loading…
Cancel
Save