Skip to content

Commit

Permalink
add hashtag with appname in notes
Browse files Browse the repository at this point in the history
  • Loading branch information
deevroman committed Sep 28, 2023
1 parent f4c4ab6 commit bad620b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/providers/notes.dart
Expand Up @@ -210,7 +210,7 @@ class NotesProvider extends ChangeNotifier {
final url = Uri.https(kOsmEndpoint, '/api/0.6/notes', {
'lat': note.location.latitude.toString(),
'lon': note.location.longitude.toString(),
'text': note.message,
'text': (note.message ?? "") + "\n\n#EveryDoor",
});
final resp = await http.post(url, headers: headers);
if (resp.statusCode != 200) {
Expand Down

0 comments on commit bad620b

Please sign in to comment.