Stop creating unnecessary log file in Nextcloud base folder
EpisodeActionReader created (or appended to) file actionreader.log in Nextcloud base folder (with index.php & occ). This concluded in a Nextcloud warning about "additional files in Nextcloud folder" in the self-check feature.
This commit is contained in:
parent
9ac7758e87
commit
20920c5d84
|
@ -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