Do you experience problems during downloading?
Check your connection in Status and Interface settings window.
Use Test Server in Config > Servers.
We will probably ask you to do a test using only basic settings.
Do you experience problems during repair or unpacking?
Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
I am trying to use the JSON API (for history in SABnzbd 0.6.7) but all strings seem to be wrapped in single quotes. The JSON standard defines strings like this:
http://www.json.org
A string is a sequence of zero or more Unicode characters, wrapped in double quotes, using backslash escapes.
You could be right, I'll check.
Changing that overnight might upset other users though because
current interfacing apps don't seem to bothered by this.
Wrong implementation or not, you're the first with this complaint.
One more thought after replacing lots of things in the api response (False -> false, True -> true, None -> null, ...).
If you want to make it valid JSON one day this site is really useful: http://jsonlint.com/
I cannot see what your actual API call is, but I think you omitted the &output=json part.
What you describe only happens when you omit the output specifier.
In that case, you get "plain" ASCII (or rather Python's str() rendering), which is not json.