Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Easy way to configure defaults for "seen" and "favorite" #68

Open
keyboardsmash opened this issue Jan 1, 2021 · 1 comment
Open

Easy way to configure defaults for "seen" and "favorite" #68

keyboardsmash opened this issue Jan 1, 2021 · 1 comment
Labels

Comments

@keyboardsmash
Copy link

I managed to disable having new movies added as favorites, but trying to do that with 'seen' is fruitless.

It would be nice if it was possible to how php4dvd should handle new movies.

@jreklund
Copy link
Owner

Doesn't look that hard to implement a custom favorite, own, seen preference. Will have a look at it.

Change true into false, if you want the default to be "No" in the meanwhile. This is regarding "imdb"-movies, if you add them yourself they will always be set to "Yes" regardless of what you set this too.

/lib/db/Movie.class.php:

$this->favourite = isset($this->favourite) ? $this->favourite : false;
$this->own = isset($this->own) ? $this->own : true;
$this->seen = isset($this->seen) ? $this->seen : true;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants