Skip to content

Commit

Permalink
Merge pull request #398 from chenxiaolong/call_direction
Browse files Browse the repository at this point in the history
OutputFilenameGenerator: Add missing return keyword when getting `direction` variable
  • Loading branch information
chenxiaolong authored Jul 31, 2023
2 parents a85821f + a529b90 commit 4b09522
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class OutputFilenameGenerator(

return formatter.format(metadata.timestamp)
}
"direction" -> metadata.direction?.toString()
"direction" -> return metadata.direction?.toString()
"sim_slot" -> {
// Only append SIM slot ID if the device has multiple active SIMs
if (metadata.simCount != null && metadata.simCount > 1) {
Expand Down

0 comments on commit 4b09522

Please sign in to comment.