Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1912 P25 Patch Group Details Missing In Now Playing and Streaming/Recording Metadata #1954

Merged
merged 1 commit into from
Aug 23, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -2218,7 +2218,6 @@ public void receiveDecoderStateEvent(DecoderStateEvent event)
public void start()
{
super.start();
mPatchGroupManager.clear();

//Change the default (45-second) traffic channel timeout to 1 second
if(mChannel.isTrafficChannel())
Expand All @@ -2231,11 +2230,4 @@ public void start()
public void init()
{
}

@Override
public void stop()
{
super.stop();
mPatchGroupManager.clear();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1959,7 +1959,6 @@ public void receiveDecoderStateEvent(DecoderStateEvent event)
public void start()
{
super.start();
mPatchGroupManager.clear();

//Change the default (45-second) traffic channel timeout to 1 second
if(mChannel.isTrafficChannel())
Expand All @@ -1972,11 +1971,4 @@ public void start()
public void init()
{
}

@Override
public void stop()
{
super.stop();
mPatchGroupManager.clear();
}
}
Loading