Commit 4b7fc11 1 parent 6edd211 commit 4b7fc11 Copy full SHA for 4b7fc11
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -323,7 +323,7 @@ async fn ntf_watchlist_force(
323
323
// use memory_stats::memory_stats;
324
324
// dbg!(memory_stats().unwrap().physical_mem / 1024 / 1000);
325
325
let params: PlexContext = req. extract ( ) . await . unwrap ( ) ;
326
-
326
+ dbg ! ( & req ) ;
327
327
if params. clone ( ) . token . is_some ( ) {
328
328
tokio:: spawn ( async move {
329
329
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(
385
385
depot : & mut Depot ,
386
386
) {
387
387
let mut params: PlexContext = req. extract ( ) . await . unwrap ( ) ;
388
- // dbg!(&req);
388
+
389
389
let t = req. param :: < String > ( "type" ) . unwrap ( ) ;
390
390
let uuid = req. param :: < String > ( "uuid" ) . unwrap ( ) ;
391
391
let token = req. param :: < String > ( "token" ) ;
392
-
392
+ // dbg!("")
393
393
// some clients do not send token for an image request, so we include it in the urk ourself.
394
394
if token. is_some ( ) {
395
395
params. token = token;
You can’t perform that action at this time.
0 commit comments