Skip to content

Commit

Permalink
Fix Presslabs bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jmduke committed Sep 10, 2024
1 parent 108d30c commit e82e9a3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/services.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ type Service = {
substrings?: string[];
defunct?: boolean;
headers?: {
[key: string]: string;
key: string;
value: string;
};
dns_prefix?: string;
};
Expand Down Expand Up @@ -1870,7 +1871,8 @@ export const REGISTRY: { [key in string]: Service } = {
genre: "hosting",
url: "https://www.presslabs.com",
headers: {
"X-Presslab-Stats": "*"
key: "X-Presslab-Stats",
value: "*"
}
},
bubble: {
Expand Down

0 comments on commit e82e9a3

Please sign in to comment.