Skip to content

Commit

Permalink
revert logbook naming
Browse files Browse the repository at this point in the history
  • Loading branch information
xbgmsharp committed Oct 29, 2023
1 parent 38ad608 commit e8c0ea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion initdb/02_3_2_signalk_public_functions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ CREATE OR REPLACE FUNCTION process_logbook_queue_fn(IN _id integer) RETURNS void
from_name := geo->>'name';
geo := reverse_geocode_py_fn('nominatim', logbook_rec._to_lng::NUMERIC, logbook_rec._to_lat::NUMERIC);
to_name := geo->>'name';
SELECT CONCAT('From ', from_name, ' to ' , to_name) INTO log_name;
SELECT CONCAT(from_name, ' to ' , to_name) INTO log_name;

-- Process `propulsion.*.runTime` and `navigation.log`
-- Calculate extra json
Expand Down

0 comments on commit e8c0ea5

Please sign in to comment.