From aee6bf7e7aedb250911f79f43d56bac934c64381 Mon Sep 17 00:00:00 2001
From: Jonas Platte <jplatte+gitlab@posteo.de>
Date: Sun, 13 Feb 2022 11:30:04 +0000
Subject: [PATCH] Change this to handler

---
 src/main.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main.rs b/src/main.rs
index 828d7dc69..a96bef509 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -392,10 +392,10 @@ fn add_to_router(self, mut router: Router) -> Router {
                 let method_filter = method_to_filter(meta.method);
 
                 for path in IntoIterator::into_iter([meta.unstable_path, meta.r0_path, meta.stable_path]).flatten() {
-                    let this = self.clone();
+                    let handler = self.clone();
 
                     router = router.route(path, on(method_filter, |$( $ty: $ty, )* req| async move {
-                        this($($ty,)* req).await.map(RumaResponse)
+                        handler($($ty,)* req).await.map(RumaResponse)
                     }))
                 }
 
-- 
GitLab