We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cb956c commit ea4b131Copy full SHA for ea4b131
klite.embd
@@ -6320,6 +6320,14 @@ Current version: 109
6320
.then((response) => response.json())
6321
.then((data) => {
6322
console.log(data);
6323
+
6324
+ //hack for together.xyz
6325
+ if(data!=null && data.data==null && data.length>0 && data[0] && data[0].id && data[0].id!="")
6326
+ {
6327
+ console.log("together.xyz workaround hack");
6328
+ data = { "data": data }; //fix for their bad format
6329
+ }
6330
6331
if (!data.error && data.data && data.data.length > 0)
6332
{
6333
let isOpenrouter = (document.getElementById("customapidropdown").value==5);
0 commit comments