Skip to content

Commit 4b7fc11

Browse files
committed
fix: test
1 parent 6edd211 commit 4b7fc11

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/routes.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ async fn ntf_watchlist_force(
323323
// use memory_stats::memory_stats;
324324
// dbg!(memory_stats().unwrap().physical_mem / 1024 / 1000);
325325
let params: PlexContext = req.extract().await.unwrap();
326-
326+
dbg!(&req);
327327
if params.clone().token.is_some() {
328328
tokio::spawn(async move {
329329
let url = format!("https://notifications.plex.tv/api/v1/notifications/settings?X-Plex-Token={}", params.clone().token.unwrap());
@@ -385,11 +385,11 @@ pub async fn hero_image(
385385
depot: &mut Depot,
386386
) {
387387
let mut params: PlexContext = req.extract().await.unwrap();
388-
// dbg!(&req);
388+
389389
let t = req.param::<String>("type").unwrap();
390390
let uuid = req.param::<String>("uuid").unwrap();
391391
let token = req.param::<String>("token");
392-
392+
// dbg!("")
393393
// some clients do not send token for an image request, so we include it in the urk ourself.
394394
if token.is_some() {
395395
params.token = token;

0 commit comments

Comments
 (0)