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

Fixed where you couldn't bulk edit the limits to 0

pull/2401/head
Jamie 7 years ago
parent a94898cf73
commit e172c94225

@ -80,10 +80,10 @@ export class UserManagementComponent implements OnInit {
if(anyRoles) {
x.claims = this.availableClaims;
}
if(this.bulkEpisodeLimit && this.bulkEpisodeLimit > 0) {
if(this.bulkEpisodeLimit) {
x.episodeRequestLimit = this.bulkEpisodeLimit;
}
if(this.bulkMovieLimit && this.bulkMovieLimit > 0) {
if(this.bulkMovieLimit) {
x.movieRequestLimit = this.bulkMovieLimit;
}
this.identityService.updateUser(x).subscribe(y => {

Loading…
Cancel
Save