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

datamapper supports null and DBNull

pull/24/head
kay.one 12 years ago
parent af1e05433a
commit 44ff12eaaa

@ -58,7 +58,7 @@ namespace Marr.Data.Mapping
dbValue = dataMap.Converter.FromDB(dataMap, dbValue);
}
if (dbValue != DBNull.Value)
if (dbValue != DBNull.Value && dbValue != null)
{
dataMap.Setter(ent, dbValue);
}

Loading…
Cancel
Save