Skip to content

Commit 58d87c3

Browse files
authored
chore: replace http with https (#1380)
1 parent 067d154 commit 58d87c3

File tree

7 files changed

+38
-38
lines changed

7 files changed

+38
-38
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ For more information, see [LICENSE](LICENSE).
3636
[github-releases]: https://github.com/gitify-app/gitify/releases/latest
3737
[github-website]: https://github.com/gitify-app/website
3838
[github-website-pulls]: https://github.com/gitify-app/website/pulls
39-
[brew]: http://brew.sh/
39+
[brew]: https://brew.sh/
4040
[homebrew-cask]: https://formulae.brew.sh/cask/gitify
4141
[coveralls]: https://coveralls.io/github/gitify-app/gitify
4242
[coveralls-badge]: https://img.shields.io/coverallsCoverage/github/gitify-app/gitify?logo=coveralls

entitlements/entitlements.mac.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<!-- As per https://github.com/electron-userland/electron-builder/blob/master/packages/app-builder-lib/templates/entitlements.mac.plist -->
55
<dict>

src/components/__snapshots__/Sidebar.test.tsx.snap

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/icons/LogoIcon.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export const LogoIcon: FC<ILogoIcon> = ({
2727
size === Size.LARGE && 'size-16',
2828
)}
2929
onClick={() => onClick?.()}
30-
xmlns="http://www.w3.org/2000/svg"
31-
xmlnsXlink="http://www.w3.org/1999/xlink"
30+
xmlns="https://www.w3.org/2000/svg"
31+
xmlnsXlink="https://www.w3.org/1999/xlink"
3232
viewBox="0 0 500 500"
3333
role="img"
3434
aria-label="Gitify Logo"

src/components/icons/__snapshots__/LogoIcon.test.tsx.snap

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/routes/__snapshots__/Login.test.tsx.snap

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils/auth/utils.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ describe('utils/auth/utils.ts', () => {
3333
).mockImplementation((event, callback): void => {
3434
if (event === 'will-redirect') {
3535
const event = new Event('will-redirect');
36-
callback(event, 'http://github.com/?code=123-456');
36+
callback(event, 'https://github.com/?code=123-456');
3737
}
3838
});
3939

@@ -59,7 +59,7 @@ describe('utils/auth/utils.ts', () => {
5959
).mockImplementation((event, callback): void => {
6060
if (event === 'will-redirect') {
6161
const event = new Event('will-redirect');
62-
callback(event, 'http://www.github.com/?error=Oops');
62+
callback(event, 'https://www.github.com/?error=Oops');
6363
}
6464
});
6565

0 commit comments

Comments
 (0)