Changeset 32833


Ignore:
Timestamp:
02/03/15 19:43:43 (9 years ago)
Author:
obi
Message:

set recordnamefmt default movie-channel for imdb search and add ( ) to recordname

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/record.h

    r32788 r32833  
    828828        if(type != RECTIMESHIFT && recordnamefmt == 0)
    829829        {
     830                tmpstr = ostrcat(tmpstr, "(", 1, 0);
    830831                if(channelname == NULL || strlen(channelname) == 0)
    831832                        tmpstr = ostrcat(tmpstr, "unknown", 1, 0);
    832833                else
    833834                        tmpstr = ostrcat(tmpstr, channelname, 1, 0);
    834                 tmpstr = ostrcat(tmpstr, "-", 1, 0);
     835                tmpstr = ostrcat(tmpstr, ")-", 1, 0);
    835836        }
    836837
     
    842843        if(type != RECTIMESHIFT && recordnamefmt == 1)
    843844        {
    844                 tmpstr = ostrcat(tmpstr, "-", 1, 0);
     845                tmpstr = ostrcat(tmpstr, "-(", 1, 0);
    845846                if(channelname == NULL || strlen(channelname) == 0)
    846847                        tmpstr = ostrcat(tmpstr, "unknown", 1, 0);
     
    864865        tmpstr = ostrcat(tmpstr, "-", 1, 0);
    865866        tmpstr = ostrcat(tmpstr, buf1, 1, 1);
     867        tmpstr = ostrcat(tmpstr, ")", 1, 0);
    866868        tmpstr = ostrcat(tmpstr, ".ts", 1, 0);
    867869
Note: See TracChangeset for help on using the changeset viewer.