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

Fixes issue with History table not having a movie id field.

pull/23/head
Leonardo Galli 8 years ago
parent ad95fbfd4a
commit 6d23fb1b61

@ -17,7 +17,8 @@ namespace NzbDrone.Core.Datastore.Migration
.WithColumn("SourceTitle").AsString()
.WithColumn("Date").AsDateTime()
.WithColumn("Quality").AsString()
.WithColumn("Data").AsString();
.WithColumn("Data").AsString()
.WithColumn("MovieId").AsInt32().WithDefaultValue(0);
}
}
}

Loading…
Cancel
Save