Merge pull request #19 from JonOfUs/main
Stop creating unnecessary log file in Nextcloud root folder
This commit is contained in:
commit
3a5607a198
|
@ -5,15 +5,12 @@ namespace OCA\GPodderSync\Core\EpisodeAction;
|
|||
|
||||
class EpisodeActionReader {
|
||||
public function fromString(string $episodeActionString): EpisodeAction {
|
||||
file_put_contents('actionreader.log', var_export($episodeActionString, true), FILE_APPEND);
|
||||
preg_match(
|
||||
'/\[EpisodeAction{(podcast=\')(?<podcast>.*?)(\', episode=\')(?<episode>.*?)(\', action=)(?<action>.*?)(, timestamp=)(?<timestamp>.*?)(, started=)(?<started>.*?)(, position=)(?<position>.*?)(, total=)(?<total>.*?)}]*/',
|
||||
$episodeActionString,
|
||||
$matches
|
||||
);
|
||||
|
||||
file_put_contents('actionreader.log', var_export($matches, true), FILE_APPEND);
|
||||
|
||||
return new EpisodeAction(
|
||||
$matches["podcast"],
|
||||
$matches["episode"],
|
||||
|
|
Loading…
Reference in New Issue