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
currently, the derive macro fails when it's used in stremio-core itself
to solve this, we should check if the name of the currently compiled crate is stremio-core, and if so, use "crate"; else, use crate_name("stremio-core").unwrap_or_else(||...panic...),
The text was updated successfully, but these errors were encountered:
currently, the derive macro fails when it's used in
stremio-core
itselfto solve this, we should check if the name of the currently compiled crate is
stremio-core
, and if so, use"crate"
; else, usecrate_name("stremio-core").unwrap_or_else(||...panic...)
,The text was updated successfully, but these errors were encountered: