You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The zip download format is only meant as a fallback for browsers, because you cannot use the cemu-smm library on client side.
The protobuf requests will decrease server load by a HUGE amount.
cemu-smm has functions to easily handle the Protobuf format:
import{deserialize,loadSave}from'cemu-smm';(async()=>{constrequestedData=/* make your request here */constcourse=awaitdeserialize(requestedData)constsave=awaitloadSave(/* path to save */)awaitsave.addCourse(course)})()
The text was updated successfully, but these errors were encountered:
I will implement a HTTP 429 error response on the backend, if the user will make too many requests for zip files. It is honestly rather a backend issue. I was just too lazy to edit the way zip downloads work
The zip download format is only meant as a fallback for browsers, because you cannot use the cemu-smm library on client side.
The protobuf requests will decrease server load by a HUGE amount.
cemu-smm has functions to easily handle the Protobuf format:
The text was updated successfully, but these errors were encountered: