I am creating a library project for windows as a jack of all trades; however, I can't figure out how to make the json index.tfl to show up in tinfoil. The only way for me to get it to show up is if the file name is [titleID].extension otherwise nothing shows up. I am hoping I may have some help as to what I am doing wrong. I rather keep the user's file name preference instead of changing it to just bracketed title id (even if it is better for keeping duplicates down).
I tried to encode the uri but that made it not even show up on tinfoil... I am thinking my app is cursed now.
I am using Tinfoil 20.
Am I using the correct method or are there any other methods I can use to post the data for tinfoil to read.
Code:
//nothing shows up
"files":[
{"url":"SomeGame[someID].extension", ...
]
//nothing shows up
"files":[
{"url":"http://someurl/SomeGame[someID].extension", ...
]
//This works
"files":[
{"url":"[someID].extension", ...
]
I tried to encode the uri but that made it not even show up on tinfoil... I am thinking my app is cursed now.
I am using Tinfoil 20.
Am I using the correct method or are there any other methods I can use to post the data for tinfoil to read.












