device-automation-bus / dab-adapter-rs

Apache License 2.0
2 stars 8 forks source link

Fix launching Netflix from suspended state #54

Closed yulian5 closed 7 months ago

yulian5 commented 7 months ago

Hello,

Currently it's not possible to resume (launch) any app from suspended (BACKGROUND) state. Any attempt produces an error: Internal error

{ "status": 500, "error": "Require App specific deeplinking implementation." }

which comes from lines 161-166:

} else {
// Other App specific deeplinking.
return Err(DabError::Err500(
"Require App specific deeplinking implementation.".to_string(),
));
}

Thanks!

yulian5 commented 7 months ago

Hi @denisyuji, Can you please review that change? It's additional fix for last change from @arun-madhavan-013: #53 Thanks!