freelawproject / recap

This repository is for filing issues on any RECAP-related effort.
https://free.law/recap/
12 stars 4 forks source link

recap-chrome not showing notifications #200

Closed saizai closed 6 years ago

saizai commented 6 years ago

See eg #189, #196. Issue present in 2289fbbf82f501619b831de7062cd977f89e2e63. Cause not clear.

mlissner commented 6 years ago

Can you please test using this extension that shows canonical use of notifications: https://github.com/mdn/webextensions-examples/tree/master/notify-link-clicks-i18n

With that done, we'll know whether this is a RECAP or a @saizai problem. I'd love to find out what's really happening here.

saizai commented 6 years ago

It doesn't seem to work in Chrome. (At commit 3fb6017d4387d86f29bc702afc2d630d1a121262.)

PACER page console:

chrome-extension://egkbcejjofbbpnfjmbcidkkfeiapmoic/content-script.js:14 Uncaught ReferenceError: browser is not defined
    at notifyExtension (chrome-extension://egkbcejjofbbpnfjmbcidkkfeiapmoic/content-script.js:14)

Background page console:

background-script.js:21 Uncaught ReferenceError: browser is not defined
    at background-script.js:21
mlissner commented 6 years ago

Oh, damn. That's because these are Firefox extensions, which use the word browser where they should use the word chrome (which works in both FF or Chrome). Can you do a global find and replace for this and reload? Should fix things.

(FWIW, browser is standard-track, but Chrome works everywhere. Ugh, Firefox is trying to do it right, but it's awkward right now.)

saizai commented 6 years ago

OK, did that.

Going through DCD and loading the Manafort docket, then ECF # 45, yielded two notifications (one for the docket, one for the document-select page). None for the document.

Console on the PACER page:

19:22:51.204 VM1057 content-script.js:13 content script sending message
19:22:53.770 04516304747:1 The certificate used to load https://ecf.dcd.uscourts.gov/doc1/04516304747 uses an SSL certificate that will be distrusted in an upcoming release of Chrome. Once distrusted, users will be prevented from loading this resource. See https://g.co/chrome/symantecpkicerts for more information.
19:22:54.009 Navigated to https://ecf.dcd.uscourts.gov/doc1/04516304747
19:22:54.958 content_delegate.js:395 Attaching links to all eligible documents (1 found)
19:22:55.157 VM1074 extensions::extension:1 [Violation] 'setTimeout' handler took 62ms
19:22:55.228 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 236ms
19:22:56.524 content_delegate.js:164 Got results from API. Running callback on API results to insert link
19:22:56.828 content_delegate.js:403 Got results from API. Running callback on API results to attach links and icons where appropriate.
19:23:07.420 content_delegate.js:215 Successfully submitted RECAP "View" button form: OK
19:23:07.485 utils.js:121 XHR finished loading: POST "https://ecf.dcd.uscourts.gov/doc1/04516304747".
httpRequest @ utils.js:121
ContentDelegate.onDocumentViewSubmit @ content_delegate.js:214
postMessage (async)
document.createElement.__proto__.submit @ VM1172:1
goDLS @ core.js:89
onsubmit @ 04516304747:37
19:23:07.615 [Violation] 'load' handler took 183ms
19:23:07.675 [Violation] Forced reflow while executing JavaScript took 42ms
19:23:16.250 content_delegate.js:261 Successfully got PDF as arraybuffer via ajax request.
19:23:16.298 utils.js:124 XHR finished loading: GET "https://ecf.dcd.uscourts.gov/cgi-bin/show_temp.pl?file=5291768-0--22665.pdf&type=application/pdf".
httpRequest @ utils.js:124
ContentDelegate.showPdfPage @ content_delegate.js:260
(anonymous) @ content_delegate.js:231
FileReader (async)
(anonymous) @ content_delegate.js:235
xhr.onreadystatechange @ utils.js:116
XMLHttpRequest.send (async)
httpRequest @ utils.js:121
ContentDelegate.onDocumentViewSubmit @ content_delegate.js:214
postMessage (async)
document.createElement.__proto__.submit @ VM1172:1
goDLS @ core.js:89
onsubmit @ 04516304747:37
19:23:16.407 content_delegate.js:275 Stored pacer_case_id is 190596
19:23:17.297 content_delegate.js:293 Resource interpreted as Document but transferred with MIME type application/pdf: "blob:https://ecf.dcd.uscourts.gov/02570fc3-e8b2-4901-bd0e-3f7c7b74cdaf"

Console on the RECAP background page:

19:21:08.463 recap.js:59 Made it info the getAvailabilityForDocuments function
19:21:11.180 recap.js:70 Got successful response when looking up document availability: success
19:21:12.731 recap.js:100 Successfully uploaded docket: 'success' with processing queue id of 4693
19:22:01.248 recap.js:25 Got case number '190596' for pacer_doc_id: '04506304747'
19:22:01.362 recap.js:59 Made it info the getAvailabilityForDocuments function
19:22:03.704 recap.js:70 Got successful response when looking up document availability: success
19:22:04.122 recap.js:128 Successfully uploaded attachment page: 'success' with processing queue id of 4695
19:22:54.953 recap.js:25 Got case number '190596' for pacer_doc_id: '04506304747'
19:22:54.957 recap.js:59 Made it info the getAvailabilityForDocuments function
19:22:55.016 recap.js:59 Made it info the getAvailabilityForDocuments function
19:22:56.522 recap.js:70 Got successful response when looking up document availability: success
19:22:56.827 recap.js:70 Got successful response when looking up document availability: success
19:23:16.355 recap.js:25 Got case number '190596' for pacer_doc_id: '04506304747'
19:23:17.890 recap.js:143 Attempting PDF upload to RECAP Archive with details: pacer_court: dcd, pacer_case_id: 190596, pacer_doc_id: 04506304747,document_number: 45, attachment_number: 0.
19:23:48.330 recap.js:166 Successfully uploaded PDF: 'success' with processing queue id of 4699

Console on the notify background page:

19:21:55.744 background-script.js:7 background script received message
19:22:51.239 background-script.js:7 background script received message
saizai commented 6 years ago

Clicking the "save as" in the pdf yields a "clicked on blob:[pacer link]" notification, but that's it AFAICT. Nothing about the upload. This is on recap-chrome commit 2289fbbf82f501619b831de7062cd977f89e2e63.

mlissner commented 6 years ago

Hm, OK, so notifications are working for you, just not for uploading documents?

saizai commented 6 years ago

Correct. RECAP shows no notifications for anything.

After s/browser/chrome/g, notify-link-clicks does show notifications on link clicks, like it says on the tin.

mlissner commented 6 years ago

Sorry, I'm confused. You say:

RECAP shows no notifications for anything.

But you also say:

Going through DCD and loading the Manafort docket, then ECF # 45, yielded two notifications (one for the docket, one for the document-select page). None for the document.

Which is it?

Good to hear that the notify-link thing works. So we know this is a RECAP issue, I guess. Damn.

saizai commented 6 years ago

The two notifications were from the link notifier extension, not RECAP.

mlissner commented 6 years ago

OK, I added a console log in the notification code. That might help. Can you pull the latest code and run it as a temporary extension? You should get some new console messages, that'll help.

saizai commented 6 years ago

Pulled to 5e9b6176c740e17a9425b995065a9dfb5de2a3cc.

Console log from the latest NEF -> doc unavailable -> query -> get docket -(should be more updated than RECAP's last, but another 'leave to file denied' deal, not appearing on docket)- looks like it got uploaded, ECF 24:

[Removed the lines about certs and slow-network font fallback.]

19:54:33.250 chrome-extension://ajdfknjheekejoipbckppndcckienihm/content_delegate.js:395 Attaching links to all eligible documents (0 found)
19:54:40.985 Navigated to https://ecf.dcd.uscourts.gov/doc1/04516306223?caseid=189898&de_seq_num=100&magic_num=
19:54:42.768 VM201 content_delegate.js:395 Attaching links to all eligible documents (0 found)
19:54:43.106 VM116 extensions::extension:1 [Violation] 'setTimeout' handler took 110ms
19:54:43.175 VM189 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 350ms
19:57:16.057 Navigated to https://ecf.dcd.uscourts.gov/cgi-bin/iquery.pl
19:57:17.702 VM274 extensions::schemaUtils:1 [Violation] 'setTimeout' handler took 56ms
19:57:17.705 VM272 extensions::sendRequest:1 [Violation] 'setTimeout' handler took 60ms
19:57:17.706 VM270 extensions::event_bindings:1 [Violation] 'setTimeout' handler took 63ms
19:57:17.707 VM269 extensions::binding:1 [Violation] 'setTimeout' handler took 66ms
19:57:17.739 VM268 extensions::extension:1 [Violation] 'setTimeout' handler took 100ms
19:57:17.792 VM341 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 190ms
19:57:19.274 VM384 content_delegate.js:395 Attaching links to all eligible documents (0 found)
19:57:19.764 VM400 jquery.min.js:2 [Violation] 'setTimeout' handler took 80ms
19:57:19.842 VM376 jquery-3.2.1.js:3649 [Violation] 'setTimeout' handler took 68ms
19:57:20.624 VM340 core.js:24 XHR finished loading: GET "https://ecf.dcd.uscourts.gov/cgi-bin/possible_case_numbers.pl?1:17-cr-00201;number=0.3072469689191837".
asyncRequest @ VM340 core.js:24
q @ VM340 core.js:93
setTimeout (async)
ValidateCaseNumber @ VM340 core.js:93
AddCaseNumberLine @ VM340 core.js:93
CMECF.CaseNumberSelect @ VM340 core.js:93
(anonymous) @ iquery.pl:279
setTimeout (async)
(anonymous) @ iquery.pl:279
19:57:27.494 Navigated to https://ecf.dcd.uscourts.gov/cgi-bin/iquery.pl?861203790727294-L_1_0-1
19:57:28.680 VM414 extensions::extension:1 [Violation] 'setTimeout' handler took 65ms
19:57:28.781 VM487 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 208ms
19:57:28.968 VM521 content_delegate.js:395 Attaching links to all eligible documents (0 found)
19:57:32.061 Navigated to https://ecf.dcd.uscourts.gov/cgi-bin/DktRpt.pl?190596
19:57:32.776 VM621 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 120ms
19:57:33.077 VM663 content_delegate.js:395 Attaching links to all eligible documents (0 found)
19:57:33.164 VM663 content_delegate.js:42 Saved the pacer_doc_id to pacer_case_id mappings to local storage.
19:57:39.075 Navigated to https://ecf.dcd.uscourts.gov/cgi-bin/DktRpt.pl?597942336750127-L_1_0-1
19:57:40.274 VM700 extensions::extension:1 [Violation] 'setTimeout' handler took 93ms
19:57:40.374 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 252ms
19:57:42.009 content_delegate.js:395 Attaching links to all eligible documents (73 found)
19:57:42.099 content_delegate.js:42 Saved the pacer_doc_id to pacer_case_id mappings to local storage.
19:57:43.495 content_delegate.js:403 Got results from API. Running callback on API results to attach links and icons where appropriate.
mlissner commented 6 years ago

Did you see notifications during this process, because you're not getting the log lines you should be. You should see something that mentions showNotification.

saizai commented 6 years ago

None. (FWIW, I'd disabled the notify-links extension.)

saizai commented 6 years ago

Forgot - here's the console on RECAP background page also:

19:54:14.326 background.js:7 Setting default options after upgrade.
19:54:14.346 background.js:9 Attempted to get 'options' key from local storage. Got: [object Object]
19:54:14.347 background.js:25 Existing install. Attempting to set new defaults, if any
19:54:14.347 background.js:31 Persisting new settings object.
19:54:33.305 recap.js:25 Got case number 'undefined' for pacer_doc_id: 'null'
19:54:42.752 recap.js:25 Got case number 'undefined' for pacer_doc_id: 'null'
19:57:19.276 recap.js:25 Got case number 'undefined' for pacer_doc_id: 'null'
19:57:28.968 recap.js:25 Got case number 'undefined' for pacer_doc_id: 'null'
19:57:33.076 recap.js:34 Getting availability of docket 190596 at dcd
19:57:36.083 recap.js:44 Got successful response from server on docket query: success
19:57:42.022 recap.js:59 Made it info the getAvailabilityForDocuments function
19:57:43.493 recap.js:70 Got successful response when looking up document availability: success
19:57:44.677 recap.js:100 Successfully uploaded docket: 'success' with processing queue id of 4809
19:57:44.709 notifier.js:4 Running showNotification function. Expect a notification.
20:02:44.924 recap.js:25 Got case number 'undefined' for pacer_doc_id: 'null'
20:02:57.300 recap.js:25 Got case number 'undefined' for pacer_doc_id: 'null'
20:03:08.477 recap.js:34 Getting availability of docket 189898 at dcd
20:03:11.571 recap.js:44 Got successful response from server on docket query: success
mlissner commented 6 years ago

OK, so can you watch the background console as you do a PDF upload? You should see a message saying an upload happened, then a message saying showNotifications ran, then a notification should show up.

saizai commented 6 years ago

Just ran again, fetching PDFs. No notifications appeared, though the background console says showNotification ran. (I was particularly looking out for anything during that.)

PACER console:

09:38:31.434 VM160 content_delegate.js:395 Attaching links to all eligible documents (77 found)
09:38:31.477 VM160 content_delegate.js:42 Saved the pacer_doc_id to pacer_case_id mappings to local storage.
09:38:33.461 VM160 content_delegate.js:403 Got results from API. Running callback on API results to attach links and icons where appropriate.
09:41:56.820 Navigated to https://ecf.dcd.uscourts.gov/doc1/04506307111
09:41:57.668 VM362 content_delegate.js:395 Attaching links to all eligible documents (3 found)
09:41:57.934 VM349 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 133ms
09:41:58.921 VM362 content_delegate.js:403 Got results from API. Running callback on API results to attach links and icons where appropriate.
09:42:08.956 Navigated to https://ecf.dcd.uscourts.gov/doc1/04516307111
09:42:10.275 VM499 content_delegate.js:395 Attaching links to all eligible documents (1 found)
09:42:10.453 VM487 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 150ms
09:42:11.863 VM499 content_delegate.js:164 Got results from API. Running callback on API results to insert link
09:42:12.276 VM499 content_delegate.js:403 Got results from API. Running callback on API results to attach links and icons where appropriate.
09:42:18.582 VM499 content_delegate.js:215 Successfully submitted RECAP "View" button form: OK
09:42:18.620 VM494 utils.js:121 XHR finished loading: POST "https://ecf.dcd.uscourts.gov/doc1/04516307111".
httpRequest @ VM494 utils.js:121
ContentDelegate.onDocumentViewSubmit @ VM499 content_delegate.js:214
postMessage (async)
document.createElement.__proto__.submit @ VM513:1
goDLS @ VM486 core.js:89
onsubmit @ 04516307111:37
09:42:18.747 [Violation] Forced reflow while executing JavaScript took 34ms
09:42:20.424 VM499 content_delegate.js:261 Successfully got PDF as arraybuffer via ajax request.
09:42:20.431 VM494 utils.js:124 XHR finished loading: GET "https://ecf.dcd.uscourts.gov/cgi-bin/show_temp.pl?file=5293571-0--9183.pdf&type=application/pdf".
httpRequest @ VM494 utils.js:124
ContentDelegate.showPdfPage @ VM499 content_delegate.js:260
(anonymous) @ VM499 content_delegate.js:231
FileReader (async)
(anonymous) @ VM499 content_delegate.js:235
xhr.onreadystatechange @ VM494 utils.js:116
XMLHttpRequest.send (async)
httpRequest @ VM494 utils.js:121
ContentDelegate.onDocumentViewSubmit @ VM499 content_delegate.js:214
postMessage (async)
document.createElement.__proto__.submit @ VM513:1
goDLS @ VM486 core.js:89
onsubmit @ 04516307111:37
09:42:20.546 VM499 content_delegate.js:275 Stored pacer_case_id is 190596
09:42:20.880 VM499 content_delegate.js:293 Resource interpreted as Document but transferred with MIME type application/pdf: "blob:https://ecf.dcd.uscourts.gov/8d453a4a-b505-4cc5-a2cc-bd2f56a39946".
(anonymous) @ VM499 content_delegate.js:293
safeCallbackApply @ VM504 extensions::uncaught_exception_handler:27
handleResponse @ VM505 extensions::sendRequest:67
09:42:44.409 VM499 content_delegate.js:264 [Violation] 'popstate' handler took 157ms
09:42:44.445 [Violation] Forced reflow while executing JavaScript took 33ms
09:42:48.322 Navigated to https://ecf.dcd.uscourts.gov/doc1/04506307111
09:42:49.204 VM679 content_delegate.js:395 Attaching links to all eligible documents (3 found)
09:42:49.499 VM666 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 188ms
09:42:51.404 VM679 content_delegate.js:403 Got results from API. Running callback on API results to attach links and icons where appropriate.
09:42:53.080 Navigated to https://ecf.dcd.uscourts.gov/doc1/04516307112
09:42:53.638 VM814 content_delegate.js:395 Attaching links to all eligible documents (1 found)
09:42:53.942 VM802 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 143ms
09:42:54.426 VM814 content_delegate.js:164 Got results from API. Running callback on API results to insert link
09:42:54.845 VM814 content_delegate.js:403 Got results from API. Running callback on API results to attach links and icons where appropriate.
09:42:57.034 VM814 content_delegate.js:215 Successfully submitted RECAP "View" button form: OK
09:42:57.060 VM809 utils.js:121 XHR finished loading: POST "https://ecf.dcd.uscourts.gov/doc1/04516307112".
httpRequest @ VM809 utils.js:121
ContentDelegate.onDocumentViewSubmit @ VM814 content_delegate.js:214
postMessage (async)
document.createElement.__proto__.submit @ VM828:1
goDLS @ VM801 core.js:89
onsubmit @ 04516307112:37
09:42:57.154 [Violation] Forced reflow while executing JavaScript took 49ms
09:42:58.290 VM814 content_delegate.js:261 Successfully got PDF as arraybuffer via ajax request.
09:42:58.307 VM809 utils.js:124 XHR finished loading: GET "https://ecf.dcd.uscourts.gov/cgi-bin/show_temp.pl?file=5293571-1--9201.pdf&type=application/pdf".
httpRequest @ VM809 utils.js:124
ContentDelegate.showPdfPage @ VM814 content_delegate.js:260
(anonymous) @ VM814 content_delegate.js:231
FileReader (async)
(anonymous) @ VM814 content_delegate.js:235
xhr.onreadystatechange @ VM809 utils.js:116
XMLHttpRequest.send (async)
httpRequest @ VM809 utils.js:121
ContentDelegate.onDocumentViewSubmit @ VM814 content_delegate.js:214
postMessage (async)
document.createElement.__proto__.submit @ VM828:1
goDLS @ VM801 core.js:89
onsubmit @ 04516307112:37
09:42:58.418 VM814 content_delegate.js:275 Stored pacer_case_id is 190596
09:42:58.679 VM814 content_delegate.js:293 Resource interpreted as Document but transferred with MIME type application/pdf: "blob:https://ecf.dcd.uscourts.gov/c5fde7fa-9612-427c-ad72-2ff8d9bfe000".
(anonymous) @ VM814 content_delegate.js:293
safeCallbackApply @ VM819 extensions::uncaught_exception_handler:27
handleResponse @ VM820 extensions::sendRequest:67
09:43:18.221 Navigated to https://ecf.dcd.uscourts.gov/doc1/04506307111
09:43:19.399 VM994 content_delegate.js:395 Attaching links to all eligible documents (3 found)
09:43:19.707 VM981 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 157ms
09:43:21.609 VM994 content_delegate.js:403 Got results from API. Running callback on API results to attach links and icons where appropriate.
09:43:24.124 Navigated to https://ecf.dcd.uscourts.gov/cgi-bin/DktRpt.pl?104170435843034-L_1_0-1
09:43:25.065 VM1116 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 307ms
09:43:25.072 [Violation] Forced reflow while executing JavaScript took 197ms
09:43:25.546 VM1148 content_delegate.js:395 Attaching links to all eligible documents (77 found)
09:43:25.748 VM1148 content_delegate.js:42 Saved the pacer_doc_id to pacer_case_id mappings to local storage.
09:43:25.997 VM1148 content_delegate.js:403 Got results from API. Running callback on API results to attach links and icons where appropriate.
09:43:44.079 Navigated to https://ecf.dcd.uscourts.gov/doc1/04516307233
09:43:45.086 menu.pl?id=-1:1 [Violation] 'setTimeout' handler took 274ms
09:43:45.092 [Violation] Forced reflow while executing JavaScript took 106ms
09:43:45.368 content_delegate.js:395 Attaching links to all eligible documents (1 found)
09:43:46.999 content_delegate.js:164 Got results from API. Running callback on API results to insert link
09:43:47.348 content_delegate.js:403 Got results from API. Running callback on API results to attach links and icons where appropriate.
09:43:48.082 content_delegate.js:215 Successfully submitted RECAP "View" button form: OK
09:43:48.105 utils.js:121 XHR finished loading: POST "https://ecf.dcd.uscourts.gov/doc1/04516307233".
httpRequest @ utils.js:121
ContentDelegate.onDocumentViewSubmit @ content_delegate.js:214
postMessage (async)
document.createElement.__proto__.submit @ VM1297:1
goDLS @ core.js:89
onsubmit @ 04516307233:37
09:43:48.222 [Violation] Forced reflow while executing JavaScript took 30ms
09:43:50.307 content_delegate.js:261 Successfully got PDF as arraybuffer via ajax request.
09:43:50.324 utils.js:124 XHR finished loading: GET "https://ecf.dcd.uscourts.gov/cgi-bin/show_temp.pl?file=5293645-0--9221.pdf&type=application/pdf".
httpRequest @ utils.js:124
ContentDelegate.showPdfPage @ content_delegate.js:260
(anonymous) @ content_delegate.js:231
FileReader (async)
(anonymous) @ content_delegate.js:235
xhr.onreadystatechange @ utils.js:116
XMLHttpRequest.send (async)
httpRequest @ utils.js:121
ContentDelegate.onDocumentViewSubmit @ content_delegate.js:214
postMessage (async)
document.createElement.__proto__.submit @ VM1297:1
goDLS @ core.js:89
onsubmit @ 04516307233:37
09:43:50.418 content_delegate.js:275 Stored pacer_case_id is 190596
09:43:50.615 content_delegate.js:293 Resource interpreted as Document but transferred with MIME type application/pdf: "blob:https://ecf.dcd.uscourts.gov/c1d56a80-b1b4-4c04-b301-8aa0b9bbb20b".

RECAP background console:

09:37:40.065 recap.js:34 Getting availability of docket 190596 at dcd
09:37:42.422 jquery-3.2.1.js:9566 XHR finished loading: OPTIONS "https://www.courtlistener.com/api/rest/v3/dockets/?pacer_case_id=190596&court=dcd&fields=absolute_url%2Cdate_modified".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocket @ recap.js:36
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:37:42.728 recap.js:44 Got successful response from server on docket query: success
09:37:42.731 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/dockets/?pacer_case_id=190596&court=dcd&fields=absolute_url%2Cdate_modified".
09:38:31.441 recap.js:59 Made it info the getAvailabilityForDocuments function
09:38:32.940 jquery-3.2.1.js:9566 XHR finished loading: OPTIONS "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506281998%2C04506282001%2C04506281998%2C04506282753%2C04506282775%2C04506282753%2C04506283857%2C04506283862%2C04506283959%2C04506289091%2C04506283967%2C04506289097%2C04506285567%2C04506285539%2C04506285551%2C04506285539%2C04506285655%2C04506286599%2C04506287445%2C04506287453%2C04506288258%2C04506285655%2C04506288389%2C04506288390%2C04506288834%2C04506288869%2C04506288870%2C04506289785%2C04506290293%2C04506290301%2C04506290320%2C04506290440%2C04506290712%2C04506290799%2C04506290910%2C04506290911%2C04506291178%2C04506290910%2C04506291428%2C04506288869%2C04506288389%2C04506289785%2C04506291178%2C04506292218%2C04506292219%2C04506292275%2C04506292276%2C04506292275%2C04506292289%2C04506292294%2C04506292218%2C04506292218%2C04506294162%2C04506294163%2C04506294162%2C04506295897%2C04506296737%2C04506299596%2C04506299626%2C04506300570%2C04506300571%2C04506300577%2C04506300578%2C04506300579%2C04506300594%2C04506300595%2C04506300596%2C04506300648%2C04506300570%2C04506300577%2C04506300594%2C04506304747%2C04506304748%2C04506307047%2C04506307111%2C04506307112%2C04506307233&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:38:33.098 jquery-3.2.1.js:9566 XHR finished loading: OPTIONS "https://www.courtlistener.com/api/rest/v3/recap/".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
uploadDocket @ recap.js:93
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:38:33.459 recap.js:70 Got successful response when looking up document availability: success
09:38:33.461 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506281998%2C04506282001%2C04506281998%2C04506282753%2C04506282775%2C04506282753%2C04506283857%2C04506283862%2C04506283959%2C04506289091%2C04506283967%2C04506289097%2C04506285567%2C04506285539%2C04506285551%2C04506285539%2C04506285655%2C04506286599%2C04506287445%2C04506287453%2C04506288258%2C04506285655%2C04506288389%2C04506288390%2C04506288834%2C04506288869%2C04506288870%2C04506289785%2C04506290293%2C04506290301%2C04506290320%2C04506290440%2C04506290712%2C04506290799%2C04506290910%2C04506290911%2C04506291178%2C04506290910%2C04506291428%2C04506288869%2C04506288389%2C04506289785%2C04506291178%2C04506292218%2C04506292219%2C04506292275%2C04506292276%2C04506292275%2C04506292289%2C04506292294%2C04506292218%2C04506292218%2C04506294162%2C04506294163%2C04506294162%2C04506295897%2C04506296737%2C04506299596%2C04506299626%2C04506300570%2C04506300571%2C04506300577%2C04506300578%2C04506300579%2C04506300594%2C04506300595%2C04506300596%2C04506300648%2C04506300570%2C04506300577%2C04506300594%2C04506304747%2C04506304748%2C04506307047%2C04506307111%2C04506307112%2C04506307233&docket_entry__docket__court=dcd".
09:38:36.414 recap.js:100 Successfully uploaded docket: 'success' with processing queue id of 6883
09:38:36.422 XHR finished loading: POST "https://www.courtlistener.com/api/rest/v3/recap/".
09:38:36.481 notifier.js:4 Running showNotification function. Expect a notification.
09:38:49.957 recap.js:25 Got case number '190596' for pacer_doc_id: '04506307047'
09:38:49.963 recap.js:59 Made it info the getAvailabilityForDocuments function
09:38:49.989 recap.js:59 Made it info the getAvailabilityForDocuments function
09:38:51.019 jquery-3.2.1.js:9566 XHR finished loading: OPTIONS "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307047&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:38:51.048 jquery-3.2.1.js:9566 XHR finished loading: OPTIONS "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307047&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:38:51.351 recap.js:70 Got successful response when looking up document availability: success
09:38:51.354 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307047&docket_entry__docket__court=dcd".
09:38:51.646 recap.js:70 Got successful response when looking up document availability: success
09:38:51.649 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307047&docket_entry__docket__court=dcd".
09:38:56.895 recap.js:25 Got case number '190596' for pacer_doc_id: '04506307047'
09:38:57.154 recap.js:143 Attempting PDF upload to RECAP Archive with details: pacer_court: dcd, pacer_case_id: 190596, pacer_doc_id: 04506307047,document_number: 46, attachment_number: 0.
09:39:28.629 recap.js:166 Successfully uploaded PDF: 'success' with processing queue id of 6887
09:39:28.637 notifier.js:4 Running showNotification function. Expect a notification.
09:39:28.640 jquery-3.2.1.js:9566 XHR finished loading: POST "https://www.courtlistener.com/api/rest/v3/recap/".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
uploadDocument @ recap.js:159
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:41:57.639 recap.js:25 Got case number '190596' for pacer_doc_id: '04506307111'
09:41:57.717 recap.js:59 Made it info the getAvailabilityForDocuments function
09:41:58.600 jquery-3.2.1.js:9566 XHR finished loading: OPTIONS "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307111%2C04506307111%2C04506307112&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:41:58.917 recap.js:70 Got successful response when looking up document availability: success
09:41:58.921 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307111%2C04506307111%2C04506307112&docket_entry__docket__court=dcd".
09:41:58.961 recap.js:128 Successfully uploaded attachment page: 'success' with processing queue id of 6893
09:41:58.964 jquery-3.2.1.js:9566 XHR finished loading: POST "https://www.courtlistener.com/api/rest/v3/recap/".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
uploadAttachmentMenu @ recap.js:121
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:41:59.063 notifier.js:4 Running showNotification function. Expect a notification.
09:42:10.271 recap.js:25 Got case number '190596' for pacer_doc_id: '04506307111'
09:42:10.275 recap.js:59 Made it info the getAvailabilityForDocuments function
09:42:10.363 recap.js:59 Made it info the getAvailabilityForDocuments function
09:42:11.459 jquery-3.2.1.js:9566 XHR finished loading: OPTIONS "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307111&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:42:11.582 jquery-3.2.1.js:9566 XHR finished loading: OPTIONS "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307111&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:42:11.860 recap.js:70 Got successful response when looking up document availability: success
09:42:11.862 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307111&docket_entry__docket__court=dcd".
09:42:12.275 recap.js:70 Got successful response when looking up document availability: success
09:42:12.277 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307111&docket_entry__docket__court=dcd".
09:42:20.496 recap.js:25 Got case number '190596' for pacer_doc_id: '04506307111'
09:42:20.769 recap.js:143 Attempting PDF upload to RECAP Archive with details: pacer_court: dcd, pacer_case_id: 190596, pacer_doc_id: 04506307111,document_number: 47, attachment_number: 0.
09:42:25.582 recap.js:166 Successfully uploaded PDF: 'success' with processing queue id of 6894
09:42:25.585 jquery-3.2.1.js:9566 XHR finished loading: POST "https://www.courtlistener.com/api/rest/v3/recap/".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
uploadDocument @ recap.js:159
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:42:25.589 notifier.js:4 Running showNotification function. Expect a notification.
09:42:49.195 recap.js:25 Got case number '190596' for pacer_doc_id: '04506307111'
09:42:49.265 recap.js:59 Made it info the getAvailabilityForDocuments function
09:42:51.400 recap.js:70 Got successful response when looking up document availability: success
09:42:51.402 jquery-3.2.1.js:9566 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307111%2C04506307111%2C04506307112&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:42:53.626 recap.js:25 Got case number '190596' for pacer_doc_id: '04506307112'
09:42:53.635 recap.js:59 Made it info the getAvailabilityForDocuments function
09:42:53.672 recap.js:59 Made it info the getAvailabilityForDocuments function
09:42:53.948 jquery-3.2.1.js:9566 XHR finished loading: OPTIONS "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307112&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:42:54.307 jquery-3.2.1.js:9566 XHR finished loading: OPTIONS "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307112&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:42:54.423 recap.js:70 Got successful response when looking up document availability: success
09:42:54.425 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307112&docket_entry__docket__court=dcd".
09:42:54.843 recap.js:70 Got successful response when looking up document availability: success
09:42:54.845 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307112&docket_entry__docket__court=dcd".
09:42:58.381 recap.js:25 Got case number '190596' for pacer_doc_id: '04506307112'
09:42:58.608 recap.js:143 Attempting PDF upload to RECAP Archive with details: pacer_court: dcd, pacer_case_id: 190596, pacer_doc_id: 04506307112,document_number: 47, attachment_number: 1.
09:43:00.600 recap.js:166 Successfully uploaded PDF: 'success' with processing queue id of 6895
09:43:00.601 jquery-3.2.1.js:9566 XHR finished loading: POST "https://www.courtlistener.com/api/rest/v3/recap/".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
uploadDocument @ recap.js:159
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:43:00.608 notifier.js:4 Running showNotification function. Expect a notification.
09:43:19.390 recap.js:25 Got case number '190596' for pacer_doc_id: '04506307111'
09:43:19.457 recap.js:59 Made it info the getAvailabilityForDocuments function
09:43:21.606 recap.js:70 Got successful response when looking up document availability: success
09:43:21.608 jquery-3.2.1.js:9566 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307111%2C04506307111%2C04506307112&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:43:25.560 recap.js:59 Made it info the getAvailabilityForDocuments function
09:43:25.912 recap.js:70 Got successful response when looking up document availability: success
09:43:25.915 jquery-3.2.1.js:9566 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506281998%2C04506282001%2C04506281998%2C04506282753%2C04506282775%2C04506282753%2C04506283857%2C04506283862%2C04506283959%2C04506289091%2C04506283967%2C04506289097%2C04506285567%2C04506285539%2C04506285551%2C04506285539%2C04506285655%2C04506286599%2C04506287445%2C04506287453%2C04506288258%2C04506285655%2C04506288389%2C04506288390%2C04506288834%2C04506288869%2C04506288870%2C04506289785%2C04506290293%2C04506290301%2C04506290320%2C04506290440%2C04506290712%2C04506290799%2C04506290910%2C04506290911%2C04506291178%2C04506290910%2C04506291428%2C04506288869%2C04506288389%2C04506289785%2C04506291178%2C04506292218%2C04506292219%2C04506292275%2C04506292276%2C04506292275%2C04506292289%2C04506292294%2C04506292218%2C04506292218%2C04506294162%2C04506294163%2C04506294162%2C04506295897%2C04506296737%2C04506299596%2C04506299626%2C04506300570%2C04506300571%2C04506300577%2C04506300578%2C04506300579%2C04506300594%2C04506300595%2C04506300596%2C04506300648%2C04506300570%2C04506300577%2C04506300594%2C04506304747%2C04506304748%2C04506307047%2C04506307111%2C04506307112%2C04506307233&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:43:45.346 recap.js:25 Got case number '190596' for pacer_doc_id: '04506307233'
09:43:45.359 recap.js:59 Made it info the getAvailabilityForDocuments function
09:43:45.457 recap.js:59 Made it info the getAvailabilityForDocuments function
09:43:46.548 jquery-3.2.1.js:9566 XHR finished loading: OPTIONS "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307233&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:43:46.552 jquery-3.2.1.js:9566 XHR finished loading: OPTIONS "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307233&docket_entry__docket__court=dcd".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
getAvailabilityForDocuments @ recap.js:63
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:43:46.996 recap.js:70 Got successful response when looking up document availability: success
09:43:46.999 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307233&docket_entry__docket__court=dcd".
09:43:47.346 recap.js:70 Got successful response when looking up document availability: success
09:43:47.348 XHR finished loading: GET "https://www.courtlistener.com/api/rest/v3/recap-query/?pacer_doc_id__in=04506307233&docket_entry__docket__court=dcd".
09:43:50.379 recap.js:25 Got case number '190596' for pacer_doc_id: '04506307233'
09:43:50.628 recap.js:143 Attempting PDF upload to RECAP Archive with details: pacer_court: dcd, pacer_case_id: 190596, pacer_doc_id: 04506307233,document_number: 48, attachment_number: 0.
09:43:57.738 recap.js:166 Successfully uploaded PDF: 'success' with processing queue id of 6896
09:43:57.741 jquery-3.2.1.js:9566 XHR finished loading: POST "https://www.courtlistener.com/api/rest/v3/recap/".
send @ jquery-3.2.1.js:9566
ajax @ jquery-3.2.1.js:9173
uploadDocument @ recap.js:159
(anonymous) @ utils.js:54
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
messageListener @ extensions::messaging:240
EventImpl.dispatchToListener @ extensions::event_bindings:403
publicClassPrototype.(anonymous function) @ extensions::utils:138
EventImpl.dispatch_ @ extensions::event_bindings:387
EventImpl.dispatch @ extensions::event_bindings:409
publicClassPrototype.(anonymous function) @ extensions::utils:138
dispatchOnMessage @ extensions::messaging:392
09:43:57.748 notifier.js:4 Running showNotification function. Expect a notification.
saizai commented 6 years ago

Just saw a 'document uploaded' notification for the first time in a while. On v 1.1.8, normal subscription (not from source). Didn't see notifications yesterday.

Has something changed server-side?

mlissner commented 6 years ago

Are you sure you're on 1.1.8 and didn't get auto-updated to a beta version (I'm not sure how beta versions auto-update).

saizai commented 6 years ago

That's the displayed string in chrome://extensions.

Sincerely, Sai

On Thu, Dec 7, 2017 at 9:48 PM, Mike Lissner notifications@github.com wrote:

Are you sure you're on 1.1.8 and didn't get auto-updated to a beta version (I'm not sure how beta versions auto-update).

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/freelawproject/recap/issues/200#issuecomment-350104540, or mute the thread https://github.com/notifications/unsubscribe-auth/AACdUVOPlyndiQqW0B57C7aaFEVsjcO1ks5s-F0fgaJpZM4QetLI .

mlissner commented 6 years ago

Interesting. I don't think we've changed anything that would affect this.

saizai commented 6 years ago

Nor have I, so no idea.

saizai commented 6 years ago

And just now, no notification. But the document uploaded successfully.

mlissner commented 6 years ago

I don't know what to do here, but we haven't heard any issues about notifications from anybody else in the last three months. I think, since this has been a dead end for nearly two months, we should close it out. If you get any more clues or want to dig into it further, we can certainly reopen it. Thanks again for all your effort trying to debug this. It's certainly a weird one.