diff options
author | Christian Pointner <equinox@helsinki.at> | 2015-07-08 15:44:34 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2015-07-08 15:44:43 (GMT) |
commit | 661bf8aea88508ee89c08ee6ede2220f4e035176 (patch) | |
tree | ff4972806b09c23677810a8ea97480c8a4010ab2 /lib | |
parent | f67ca98e8c4acbe11398d802a15c3c76a4b8f95c (diff) |
added support for jingle dropboxes
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/rddb.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/rddb.pm b/lib/rddb.pm index 1d6102a..a5c1f20 100755 --- a/lib/rddb.pm +++ b/lib/rddb.pm @@ -167,6 +167,11 @@ sub get_dropboxes substr($p[3], 2, 0) = ':'; $entry->{'SHOWSTARTTIME'} = $p[3]; $entry->{'SHOWLEN'} = int $p[4]; + } elsif($p[0] eq "J") { + $entry->{'TYPE'} = 'jingle'; + $entry->{'JINGLETITLE'} = $groupdesc; + $entry->{'JINGLECART'} = int $p[1]; + $entry->{'JINGLECARTDISABLED'} = int $p[2]; } push @allowed_dbs, $entry; |