Jump to content

Report an Issue button


Recommended Posts

Posted

+1 for this - it would be extremely useful in keeping libraries properly. 

Posted

You should look into jellyseerr for this.

Fallenbagel/jellyseerr: Fork of overseerr for jellyfin support (github.com)

Its a fork of Overseerr

Jelleyseerr is quiet easy to use.

Same login as Emby user, if you connect them.

Users can report problems, with the right permissions.

I use this with my mom, she sleeps all day, and watch her tv at night.

I do not wan't her to call me a 02:00, because of some subtitle sync issue.

image.thumb.png.e33a06ae610a3e90d52b5cbd18efb348.png

And then you as an admin can review reports.

  • Like 1
Posted
52 minutes ago, Neminem said:

You should look into jellyseerr for this.

Fallenbagel/jellyseerr: Fork of overseerr for jellyfin support (github.com)

Its a fork of Overseerr

Jelleyseerr is quiet easy to use.

Same login as Emby user, if you connect them.

Users can report problems, with the right permissions.

I use this with my mom, she sleeps all day, and watch her tv at night.

I do not wan't her to call me a 02:00, because of some subtitle sync issue.

image.thumb.png.e33a06ae610a3e90d52b5cbd18efb348.png

And then you as an admin can review reports.

Anyone tried Synology?? I see it will probably be Windows only? 😞

Posted

It can run in docker also 😉

Posted

Create a playlist called 'Report an Issue' - give everyone permissions to use it - when something is broken, I ask they just add it to that playlist - When it's fixed, I remove it from the playlist.. simple but it works  .. 

  • Like 1
visproduction
Posted

As well as showing up in Admin Dashboard activity, it may be nice to send an email to the admin.  Perhaps using CURL.  Here is an example of CURL email sending to a gmail account.
https://stackoverflow.com/questions/14722556/using-curl-to-send-email

Also perhaps a small alert in the top header for admin only to show that there are new issue reported and a quick turn off alert option.

  • Like 1
  • 5 months later...
tehwabb1t
Posted

Hi all, 
Simple question, probably already been asked before but couldnt find anything. ANYWAYS.. Just curious if there a plugin or such for a chat applet or message drop. Nothing huge like messenger of anything like that. Something small like a user to user message box. I saw the quick message to users in the settings but only when connected.
Thing is, i share my emby with my family and sometimes certain movies dont play or stutter or stop and sadly the only way i find out is by contacting them about what they thought of the movie and then get the lowdown on "it wouldnt play" and such. 
Anyways thats all i really wondered about as like i said not a fully fledged messaging system but like a note drop.

All the Best

Posted

Hi, I think this is a good idea but no movement yet on it.

  • Like 1
tehwabb1t
Posted

Something simple like this..
 

<!-- 
# Dev Log – Emby Note Drop
# Date: 22/03/2025
# Author: tehwabb1t (Digital Duct Tape Dispenser)
# Version: V1

# Features:
- Dual 600x600 Text Areas (You ↔ User)
- Send / Clear buttons
- Dark Theme styling (#1c1b22)
- File Attachments (simulated)
- Dev Log embedded in HTML
- Basic JS for send/clear logic

# Future Plans:
- LocalStorage message save
- Drag 'n Drop file support
- Emby WebHook integration
-->

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Emby Note Drop V3</title>
  <style>
    body {
      background-color: #1c1b22;
      color: #ffffff;
      font-family: Arial, sans-serif;
    }
    textarea {
      width: 600px;
      height: 600px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      background-color: #2c2b33;
      color: #ffffff;
      resize: none;
    }
    button, label {
      padding: 8px 15px;
      background-color: #3498db;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    .chat-column {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .button-row {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }
    .container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      height: 100vh;
    }
  </style>
</head>
<body>
  <div class="container">
    <!-- Your Panel -->
    <div class="chat-column">
      <textarea id="textArea1"></textarea>
      <div class="button-row">
        <button onclick="clearBox('textArea1')">Clear</button>
        <button onclick="sendMessage('textArea1', 'textArea2')">Send</button>
        <input type="file" id="fileInput1" style="display: none;">
        <label for="fileInput1">Attach File</label>
      </div>
    </div>

    <!-- User Panel -->
    <div class="chat-column">
      <textarea id="textArea2"></textarea>
      <div class="button-row">
        <button onclick="clearBox('textArea2')">Clear</button>
        <button onclick="sendMessage('textArea2', 'textArea1')">Send</button>
        <input type="file" id="fileInput2" style="display: none;">
        <label for="fileInput2">Attach File</label>
      </div>
    </div>
  </div>

  <script>
    function clearBox(id) {
      document.getElementById(id).value = '';
    }
    function sendMessage(fromId, toId) {
      const msg = document.getElementById(fromId).value.trim();
      if (msg !== '') {
        document.getElementById(toId).value += '\n' + msg;
        document.getElementById(fromId).value = '';
      }
    }
  </script>
</body>
</html>

 

Note-Drop-Template.jpg

Emby Note Drop.html

  • Thanks 1
  • 7 months later...
Posted (edited)

@Lukeor any other developer.

Is this something being worked on? It's the feature i want the most.

Edited by yocker
Posted

HI, it's something we'd like to add in future updates. Thanks.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...