Skip to content

Commit

Permalink
Merge pull request #101 from FernetMenta/recording
Browse files Browse the repository at this point in the history
fix episode name on recordings
  • Loading branch information
FernetMenta committed Jan 14, 2017
2 parents 0c9552e + 66a8494 commit 88eed82
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/VNSIData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -941,8 +941,8 @@ PVR_ERROR cVNSIData::GetRecordingsList(ADDON_HANDLE handle)
char *strTitle = vresp->extract_String();
strncpy(tag.strTitle, strTitle, sizeof(tag.strTitle) - 1);

char *strPlotOutline = vresp->extract_String();
strncpy(tag.strPlotOutline, strPlotOutline, sizeof(tag.strPlotOutline) - 1);
char *strEpisodeName = vresp->extract_String();
strncpy(tag.strEpisodeName, strEpisodeName, sizeof(tag.strEpisodeName) - 1);

char *strPlot = vresp->extract_String();
strncpy(tag.strPlot, strPlot, sizeof(tag.strPlot) - 1);
Expand Down Expand Up @@ -1093,8 +1093,8 @@ PVR_ERROR cVNSIData::GetDeletedRecordingsList(ADDON_HANDLE handle)
char *strTitle = vresp->extract_String();
strncpy(tag.strTitle, strTitle, sizeof(tag.strTitle) - 1);

char *strPlotOutline = vresp->extract_String();
strncpy(tag.strPlotOutline, strPlotOutline, sizeof(tag.strPlotOutline) - 1);
char *strEpisodeName = vresp->extract_String();
strncpy(tag.strEpisodeName, strEpisodeName, sizeof(tag.strEpisodeName) - 1);

char *strPlot = vresp->extract_String();
strncpy(tag.strPlot, strPlot, sizeof(tag.strPlot) - 1);
Expand Down

0 comments on commit 88eed82

Please sign in to comment.