Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .lycheeignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ https://anusii.github.io/mypod/
https://anusii.github.io/mypod/client-profile.jsonld
https://anusii.github.io/mypod/redirect.html
https://your-solid-server/
https://dev.empwr.au/mypod/
https://server/alice/

# 20260605 gjw Failing solid servers
Expand Down
4 changes: 2 additions & 2 deletions client-profile.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"redirect_uris": [
"https://filepod.solidcommunity.au/redirect.html",
"com.togaware.filepod://redirect",
"http://localhost:4400/redirect"
"http://localhost:4400/redirect.html"
],
"post_logout_redirect_uris": [
"https://filepod.solidcommunity.au/redirect.html",
"com.togaware.filepod://redirect",
"http://localhost:4400/redirect"
"http://localhost:4400/redirect.html"
],
"scope": "openid profile offline_access webid",
"grant_types": [
Expand Down
15 changes: 8 additions & 7 deletions lib/app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

library;

import 'package:flutter/foundation.dart' show kIsWeb;
import 'package:flutter/material.dart';

import 'package:solidui/solidui.dart';
Expand Down Expand Up @@ -61,13 +62,13 @@ class App extends StatelessWidget {
image: const AssetImage('assets/images/app_image.jpg'),
logo: const AssetImage('assets/images/app_icon.png'),
link: 'https://github.com/anusii/filepod',
clientId:
'https://solidcommunity.au/apps/filepod/client-profile.jsonld',
redirectUris: [
'https://filepod.solidcommunity.au/redirect.html',
'com.togaware.filepod://redirect',
'http://localhost:4400/redirect',
],
clientId: 'https://anusii.github.io/filepod/client-profile.jsonld',
redirectUris: kIsWeb
? ['${Uri.base.origin}/redirect.html']
: const [
'com.togaware.filepod://redirect',
'http://localhost:4400/redirect.html',
],
child: appScaffold,
),
);
Expand Down
Loading