|
const string maxThreadKey = "Content/JsonSources/" + currentContentID + "/maxThreads"; |
According to the data model in json:
"cmsContent": {
"liveUpdates": {
"enabled": true,
"interval": 5.0,
"maxThreads": 1,
"maxConcurrentDownloads": 1
}
}
Shouldn't that line of code look like this?
const string maxThreadKey = "Content/JsonSources/" + currentContentID + "/liveUpdates/maxThreads";