Skip to content
Snippets Groups Projects
Commit ceb21270 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Add group uri param on group add

parent d3ce99db
No related branches found
No related tags found
1 merge request!316Resolves #343 GUI and Frame Refactor
Pipeline #28582 failed
...@@ -949,7 +949,9 @@ uint32_t Feed::add(const ftl::URI &uri) { ...@@ -949,7 +949,9 @@ uint32_t Feed::add(const ftl::URI &uri) {
lk.unlock(); lk.unlock();
for (auto i=sources.begin(); i!=sources.end(); ++i) { for (auto i=sources.begin(); i!=sources.end(); ++i) {
add(i.key()); ftl::URI uri2(i.key());
uri2.setAttribute("group", uri.getPathSegment(0));
add(uri2);
} }
lk.lock(); lk.lock();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment