diff --git a/meshtastic/deviceonly.proto b/meshtastic/deviceonly.proto index 746ca867..f5345c9d 100644 --- a/meshtastic/deviceonly.proto +++ b/meshtastic/deviceonly.proto @@ -129,6 +129,12 @@ message NodeInfoLite { * Number of hops away from us this node is (0 if adjacent) */ uint32 hops_away = 9; + + /* + * True if node is in our favorites list + * Persists between NodeDB internal clean ups + */ + bool is_favorite = 10; } /* diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 48acc144..60a39061 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -1126,6 +1126,12 @@ message NodeInfo { * Number of hops away from us this node is (0 if adjacent) */ uint32 hops_away = 9; + + /* + * True if node is in our favorites list + * Persists between NodeDB internal clean ups + */ + bool is_favorite = 10; } /*