From dddaa3d6e9d441e3d4daa42d346caa8a15562eee Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Thu, 28 Jul 2022 12:11:36 -0700 Subject: [PATCH] Update shelf detection logic with latest header As of v1.3.2 the header is "X-Powered-By": "Dart with package:shelf" Leaving previous value to allow detection of older versions --- src/technologies/s.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/technologies/s.json b/src/technologies/s.json index 117315338..370036763 100644 --- a/src/technologies/s.json +++ b/src/technologies/s.json @@ -1733,7 +1733,8 @@ ], "description": "Shelf is a server framework for Dart.", "headers": { - "Server": "dart:io with Shelf" + "Server": "dart:io with Shelf", + "x-powered-by": "Dart with package:shelf" }, "oss": true, "icon": "Dart.svg",